| 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)
Syntaxpublic enum TransformOrder
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | PositionRotationScale | 0 | 
            Apply position, then rotation, then scale.
             | 
 | PositionScaleRotation | 1 | 
            Apply position, then scale, then rotation.
             | 
 | ScalePositionRotation | 2 | 
            Apply scale, then position, then rotation.
             | 
 | ScaleRotationPosition | 3 | 
            Apply scale, then rotation, then position.
             | 
 | RotationScalePosition | 4 | 
            Apply rotation, then scale, then position.
             | 
 | RotationPositionScale | 5 | 
            Apply rotation, then position, then scale.
             | 
See Also