Package com.aspose.threed
Class GlobalTransform
- java.lang.Object
-
- com.aspose.threed.GlobalTransform
-
public class GlobalTransform extends java.lang.ObjectGlobal transform is similar toTransformbut it's immutable while it represents the final evaluated transformation. Right-hand coordinate system is used while evaluating global transform
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector3getEulerAngles()Gets the rotation represented in Euler angles, measured in degreeQuaterniongetRotation()Gets the rotation represented in quaternion.Vector3getScale()Gets the scaleMatrix4getTransformMatrix()Gets the transform matrix.Vector3getTranslation()Gets the translation
-
-
-
Method Detail
-
getTranslation
public Vector3 getTranslation()
Gets the translation
-
getScale
public Vector3 getScale()
Gets the scale
-
getEulerAngles
public Vector3 getEulerAngles()
Gets the rotation represented in Euler angles, measured in degree
-
getRotation
public Quaternion getRotation()
Gets the rotation represented in quaternion.
-
getTransformMatrix
public Matrix4 getTransformMatrix()
Gets the transform matrix.
-
-