Click or drag to resize
AB4D logo

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.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.0.8746.1045
Syntax
C#
public static Transform3D CombineTransform3D(
	Transform3D firstTransform3D,
	Transform3D secondTransform3D
)

Parameters

firstTransform3D  Transform3D
first Transform3D
secondTransform3D  Transform3D
second Transform3D

Return Value

Transform3D
Transform3D combined from firstTransform3D and secondTransform3D or null if both firstTransform3D and secondTransform3D are null or Identity
See Also