Click or drag to resize

Transform3Multiply Operator

Multiplies (combines) two transformations.

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static Transform3 operator *(
	Transform3 a,
	Transform3 b
)

Parameters

a
Type: Karamba.GeometryTransform3
First transformation.
b
Type: Karamba.GeometryTransform3
Second transformation.

Return Value

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