TransformChangeBasis Method (Vector3d, Vector3d, Vector3d, Vector3d, Vector3d, Vector3d) |
Gets a change of basis transformation.
The change of basis transformation is not the same as the rotation transformation that rotates one orthonormal frame to another.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntaxpublic static Transform ChangeBasis(
Vector3d X0,
Vector3d Y0,
Vector3d Z0,
Vector3d X1,
Vector3d Y1,
Vector3d Z1
)
Public Shared Function ChangeBasis (
X0 As Vector3d,
Y0 As Vector3d,
Z0 As Vector3d,
X1 As Vector3d,
Y1 As Vector3d,
Z1 As Vector3d
) As Transform
Parameters
- X0
- Type: Rhino.GeometryVector3d
Initial basis X (can be any 3d basis). - Y0
- Type: Rhino.GeometryVector3d
Initial basis Y (can be any 3d basis). - Z0
- Type: Rhino.GeometryVector3d
Initial basis Z (can be any 3d basis). - X1
- Type: Rhino.GeometryVector3d
Final basis X (can be any 3d basis). - Y1
- Type: Rhino.GeometryVector3d
Final basis Y (can be any 3d basis). - Z1
- Type: Rhino.GeometryVector3d
Final basis Z (can be any 3d basis).
Return Value
Type:
Transform
A change of basis transformation if success, on failure.
Remarks
Change of basis transformations and rotation transformations are often confused.
This is a change of basis transformation.
If Q = a0*X0 + b0*Y0 + c0*Z0 = a1*X1 + b1*Y1 + c1*Z1, then this transform will map the point (a0,b0,c0) to (a1,b1,c1).
See Also