curveEndPoint()

Synopsis

Returns the point at either the start or end of the curve. Closed curves are those whose start and end points are identical.

Syntax

curveEndPoint ( Curve As Part, _
                End_ As Name ) As Point 
Argument Type Description
Curve part The curve whose endpoint is desired. Must be a kind of curveMixin.
End_ name Identifies which point to return. Can be either :Start or :End.

Example 1

Intent >curveEndPoint(splineCurve_1, :End) 
--> Point_(7.5, 0.0, 0.0, WorldFrame()) 

Example 2

Intent >curveEndPoint(splineCurve_1, :Start) 
--> Point_(0.0, 0.0, 0.0, WorldFrame())