Transform3Multiply Method

Multiplies (combines) two transformations.

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

Definition

Namespace: Karamba.Geometry
Assembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
C#
public static Transform3 Multiply(
	Transform3 a,
	Transform3 b
)

Parameters

a  Transform3
First transformation.
b  Transform3
Second transformation.

Return Value

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