Transform.Multiply Method

TransformMultiply Method

Multiplies (combines) two transformations.

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

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public static Transform Multiply(
	Transform a,
	Transform b
)
Public Shared Function Multiply ( 
	a As Transform,
	b As Transform
) As Transform

Parameters

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

Return Value

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

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.14
See Also