Search the Community
Showing results for tags 'resampling'.
-
I am able to resample/ rearrange points along a curve shaped primitive by a ratio (0,0.1,..,1) attribute. using a look up chop for that. how do I do that same operation on a bunch of separate prims? loaded in chops I get a saw like curve representing all ratios from all prims in one curve, but what I like to have is one curve ranging from 0 to 1 in a linear fashion (representing just "one" ratio) so that I could change that shape with a spline chop. does this make sense? thanks in advance -sebastian edit: attached a hip resample_by_attribute.hip
-
Hi there, Was wondering how I could get the following outcome. If I have a curve which looks like https://picasaweb.go...feat=directlink I would like to resample each of the straight lined segments in following manner, If segment 0-1 is 8 units long, then it should have 9 points placed at intervals of 1 unit, starting at position 0. https://picasaweb.go...feat=directlink In case, If the segment was say 8.4(float value) units long, then it would still have 9 points placed at intervals of 1 unit, but starting at position 0.2 so that it would look like, https://picasaweb.go...feat=directlink In case of the curved segment, from 4-11, It should consider all the segments between 4-11, as one single segment and resample it in the above manner. This is beacuse I want to preserve the shape of the curve and at the same time distribute points on the curve at intervals of 1 unit distance. So that geometry of 1 unit size can be instanced on the curve later on. Thank you.