|
TransformationsHelperCombineTransform3D Method |
CombineTransform3D returns a Transform3D with combining firstTransform3D and secondTransform3D.
When both firstTransform3D and secondTransform3D are null or Identity, then null is returned.
When one of the input Transform3D object is null or Identity, then the other Transform3D is returned.
Otherwise a new Transform3DGroup is created and transformations from firstTransform3D and then secondTransform3D are added.
Namespace: Ab3d.UtilitiesAssembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax public static Transform3D CombineTransform3D(
Transform3D firstTransform3D,
Transform3D secondTransform3D
)
Parameters
- firstTransform3D Transform3D
- first Transform3D
- secondTransform3D Transform3D
- second Transform3D
Return Value
Transform3DTransform3D combined from firstTransform3D and secondTransform3D or null if both firstTransform3D and secondTransform3D are null or Identity
See Also