MathHelperTransform Method (Vector3, Vector3, CoordinateSystem, CoordinateSystem)
|
Transforms a point between coordinate systems.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector3 Transform(
Vector3 point,
Vector3 zAxis,
CoordinateSystem from,
CoordinateSystem to
)
Public Shared Function Transform (
point As Vector3,
zAxis As Vector3,
from As CoordinateSystem,
to As CoordinateSystem
) As Vector3
public:
static Vector3 Transform(
Vector3 point,
Vector3 zAxis,
CoordinateSystem from,
CoordinateSystem to
)
static member Transform :
point : Vector3 *
zAxis : Vector3 *
from : CoordinateSystem *
to : CoordinateSystem -> Vector3
STATIC METHOD Transform(
point AS Vector3,
zAxis AS Vector3,
from AS CoordinateSystem,
to AS CoordinateSystem
) AS Vector3
Parameters
- point
- Type: DXFReaderNETVector3
Point to transform. - zAxis
- Type: DXFReaderNETVector3
Object normal vector. - from
- Type: DXFReaderNETCoordinateSystem
Point coordinate system. - to
- Type: DXFReaderNETCoordinateSystem
Coordinate system of the transformed point.
Return Value
Type:
Vector3Transformed point.
See Also