EndPoint
Overview
EndPoint is a struct in Aspose.3D FOSS for .NET.
The end point to trim the curve, can be a parameter value or a Cartesian point.
This struct provides 5 methods for working with EndPoint objects in .NET programs.
Available methods include: EndPoint, FromDegree, FromRadian, ToString.
All public members are accessible to any .NET application after installing the Aspose.3D FOSS for .NET package.
Properties: AsPoint, AsValue, IsCartesianPoint.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
IsCartesianPoint | bool | Read | Is the end point a Cartesian point? |
AsPoint | Vector3 | Read | Gets the end point as Cartesian point, or thrown an exception. |
AsValue | double | Read | Gets the end point as a real parameter, or throw an exception. |
Methods
| Signature | Description |
|---|---|
EndPoint(point: Vector3) | Construct a EndPoint from a Cartesian point. |
EndPoint(v: double) | Construct a EndPoint from a real parameter. |
FromDegree(degree: double) | Create an end point measured in degree. |
FromRadian(radian: double) | Create an end point measured in radian. |
ToString() | Returns a string representation of the current end point. |