Dividing curve with same distance

hello I’m trying to use curve.divide curve by distance node to divide my curve in same 1ft distance but the node is giving me an error.

any suggestion ? thank you in advance.

Assuming you’re using the custom node from the Lunchbox package? If so that node doesn’t accept polycurves, or any derivative thereof (so the offset polycurve is not going to work either).

Geometry.Explode before using this give you viable results.

Otherwise you can use this Curve.StartPoint, Curve.PointsAtSegmentLengthFromPoint, and Curve.SplitByPoints like this:

1 Like

thank you very much this was very helpful.