Forum Migration Notice
Update (2026-01-21): The user forums are now in read-only mode pending the data migration.

Update (2026-01-12): The user forums will be put into read-only mode on the 21st of January, 00:00 CET, to prepare for the data migration.

We're transitioning to a more modern community platform by beginning of next year. Learn about the upcoming changes and what to expect.

How can I get the points'Position from the curve.

I have created a wire using CreateIntersectionCurve method. But I can only get the start and end position of vertex. Here is my code  I want to get more point's position form the wire.Is there a method that can do this?

[code]

Body IntersectionCurve1 = Body.CreateIntersectionCurve(face, f1);

wire = IntersectionCurve1.Shells[0].Wires[0]

PointPosition =  wire.StartVertex.Position;

[code]

Thanks in advance.