Click or drag to resize
TransformOrder Enumeration
Different way to build matrix from transformations.

Namespace:  GeonBit.Core
Assembly:  GeonBit (in GeonBit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public enum TransformOrder
Members
  Member nameValueDescription
PositionRotationScale0 Apply position, then rotation, then scale.
PositionScaleRotation1 Apply position, then scale, then rotation.
ScalePositionRotation2 Apply scale, then position, then rotation.
ScaleRotationPosition3 Apply scale, then rotation, then position.
RotationScalePosition4 Apply rotation, then scale, then position.
RotationPositionScale5 Apply rotation, then position, then scale.
See Also