Click or drag to resize

Transform2dMultiply Method

Multiplies (combines) two transformations.

This is the same as the * operator between two transformations.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 9.0
Syntax
public static Transform2d Multiply(
	Transform2d a,
	Transform2d b
)

Parameters

a
Type: Rhino.GeometryTransform2d
First transformation.
b
Type: Rhino.GeometryTransform2d
Second transformation.

Return Value

Type: Transform2d
A transformation matrix that combines the effect of both input transformations. The resulting Transform2d gives the same result as though you'd first apply B then A.
See Also