AxisSystem
Overview
AxisSystem is a class in Aspose.3D FOSS for Java.
AxisSystem enables conversion between coordinate systems; its transformTo method returns a Matrix4 that maps the current system to a target AxisSystem.
This class provides 6 methods for working with AxisSystem objects in Java programs.
Available methods include: AxisSystem, fromAssetInfo, getCoordinateSystem, getFront, getUp, transformTo.
All public members are accessible to any Java application after installing the Aspose.3D FOSS for Java package.
Properties: coordinateSystem, front, up.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
coordinateSystem | CoordinateSystem | Read | Gets the coordinate system. |
up | Axis | Read | Gets the up. |
front | Axis | Read | Gets the front. |
Methods
| Signature | Description |
|---|---|
AxisSystem(coordinateSystem: CoordinateSystem, up: Axis, front: Axis) | Creates an AxisSystem with the given coordinate system, up axis, and front axis |
getCoordinateSystem() → CoordinateSystem | Returns the coordinate system. |
getUp() → Axis | Returns the up. |
getFront() → Axis | Returns the front. |
transformTo(target: AxisSystem) → Matrix4 | Returns a Matrix4 that transforms coordinates from this AxisSystem to the target AxisSystem |
fromAssetInfo(assetInfo: AssetInfo) → AxisSystem | Creates an AxisSystem based on the supplied AssetInfo |