Struct EndPoint

EndPoint structure

The end point to trim the curve, can be a parameter value or a Cartesian point.

public struct EndPoint

Constructors

NameDescription
EndPoint(double)Construct a EndPoint from a real parameter.
EndPoint(Vector3)Construct a EndPoint from a Cartesian point.

Properties

NameDescription
AsPoint { get; }Gets the end point as Cartesian point, or thrown an exception.
AsValue { get; }Gets the end point as a real parameter, or throw an exception.
IsCartesianPoint { get; }Is the end point a Cartesian point?

Methods

NameDescription
static FromDegree(double)Create an end point measured in degree.
static FromRadian(double)Create an end point measured in radian.
override ToString()Returns a string representation of the current end point.

See Also