MathHelperTransform Method (IEnumerableVector3, Vector3, CoordinateSystem, CoordinateSystem)
|
Transforms a point list between coordinate systems.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static IList<Vector3> Transform(
IEnumerable<Vector3> points,
Vector3 zAxis,
CoordinateSystem from,
CoordinateSystem to
)
Public Shared Function Transform (
points As IEnumerable(Of Vector3),
zAxis As Vector3,
from As CoordinateSystem,
to As CoordinateSystem
) As IList(Of Vector3)
public:
static IList<Vector3>^ Transform(
IEnumerable<Vector3>^ points,
Vector3 zAxis,
CoordinateSystem from,
CoordinateSystem to
)
static member Transform :
points : IEnumerable<Vector3> *
zAxis : Vector3 *
from : CoordinateSystem *
to : CoordinateSystem -> IList<Vector3>
STATIC METHOD Transform(
points AS IEnumerable<Vector3>,
zAxis AS Vector3,
from AS CoordinateSystem,
to AS CoordinateSystem
) AS IList<Vector3>
Parameters
- points
- Type: System.Collections.GenericIEnumerableVector3
Points to transform. - zAxis
- Type: DXFReaderNETVector3
Object normal vector. - from
- Type: DXFReaderNETCoordinateSystem
Points coordinate system. - to
- Type: DXFReaderNETCoordinateSystem
Coordinate system of the transformed points.
Return Value
Type:
IListVector3Transformed point list.
See Also