Missing point from poliline

Hi,
I have loaded geometry from Rhino. Visible lines were polylines with 5 control points. When I have converted them from polylines into list of points, first control point of each line is missing. As you can see on the image, there are no points on the left side of polylines and I’m hitting a rock trying to solve it.

Have you tried ‘Curve.StartPoint’ (or Curve.EndPoint’). Then insert this point into the list.

Or Explode the polycurves to get the individual curves. Get start points and create list for each polycurve

2 Likes

Thank you, EndPoint helped :slight_smile: