Click or drag to resize

TransformMultiply Operator (Transform, Point3d)

Multiplies a transformation by a point and gets a new point.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static Point3d operator *(
	Transform m,
	Point3d p
)

Parameters

m
Type: Rhino.GeometryTransform
A transformation.
p
Type: Rhino.GeometryPoint3d
A point.

Return Value

Type: Point3d
The transformed point.
Remarks
Note well: The right hand column and bottom row have an important effect when transforming a Euclidean point and have no effect when transforming a vector. Be sure you understand the differences between vectors and points when applying a 4x4 transformation.
See Also