I wanted to create a points at segment length from a curve, but i expected to including the start points of the curve itself.
Ive already tried the Curve.PointsAtSegmentsLengthFromPoint
node
But the results doesnt including the start point of the line.
Is there any way to do this?
Thanks in advance !
Shift the ‘from point’ to be before the curve starts, add the start point to the front of the list after PointsAtSegmentLengthFromPoint or build a range from 0 to the length of the curve stepping by your segment length and use those distances to pull the points via point at segment length.
2 Likes
umm, ive tried zip the list between StartPoint and PointsAtSegmentLengthFromPoint using python script, but theres an issue when theres an emptylist (Meaning the curve is less length than the segment Length)
can you give me example how to use the range method?
A single design script line should work. Not at my PC but try this: crv.PointAtSegmentLength(0..crv.Length..step);
2 Likes