Transform3Multiply Method
Multiplies (combines) two transformations.
This is the same as the * operator between two transformations.
Namespace: Karamba.GeometryAssembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
public static Transform3 Multiply(
Transform3 a,
Transform3 b
)
Public Shared Function Multiply (
a As Transform3,
b As Transform3
) As Transform3
public:
static Transform3 Multiply(
Transform3 a,
Transform3 b
)
static member Multiply :
a : Transform3 *
b : Transform3 -> Transform3
- a Transform3
- First transformation.
- b Transform3
- Second transformation.
Transform3A 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.