Create points along a line at fixed distance

Hi All,

I am trying to create points along a line. This line is an edge of a wall so the coordinates will vary.
I have managed to get the corner points and connect them, but I am struggling to get the intermediate points. Can any of you please give me some advice how to add these points at 1000mm CTRS. the amount of points will be determined by the length of the curve (Curve.Length/CTRS and always round down) See below snapshot:
Thanks in advance.

Hello, here is a possibility


0..Autodesk.Curve.Length(a)..100
Cordially
christian.stan

2 Likes

Some options:

https://dictionary.dynamobim.com/#/Geometry/Curve/Action/PointsAtEqualSegmentLength

https://dictionary.dynamobim.com/#/Geometry/Curve/Action/PointsAtSegmentLengthFromPoint

1 Like

Thanks Christian and Jacob both of the options worked, however the “PointsAtSegmentLengthFromPoint” is the best option for me as the point distance is adjustable.
Now I have managed to create these points. Can you help me further how to connect all the points so I’ll have a vertical line and I can create a column along them.

Line.ByStartPointEndPoint should do the trick.

That said if this is the end goal Curve.ByIsocurveOnSurfqce might be a better route.