Package com.aspose.threed
Class Pose
- java.lang.Object
-
- com.aspose.threed.A3DObject
-
- com.aspose.threed.Pose
-
public class Pose extends A3DObject
-
-
Method Summary
Modifier and Type Method Description void
addBonePose(Node node, Matrix4 matrix)
Saves pose transformation matrix for the given bone node.void
addBonePose(Node node, Matrix4 matrix, boolean localMatrix)
Saves pose transformation matrix for the given bone node.java.util.List<BonePose>
getBonePoses()
Gets allBonePose
.PoseType
getPoseType()
Gets the type of the pose.void
setPoseType(PoseType value)
Sets the type of the pose.-
Methods inherited from class com.aspose.threed.A3DObject
findProperty, getName, getProperty, removeProperty, removeProperty, setName, setProperty
-
-
-
-
Method Detail
-
getPoseType
public PoseType getPoseType()
Gets the type of the pose.
-
setPoseType
public void setPoseType(PoseType value)
Sets the type of the pose.- Parameters:
value
- New value
-
addBonePose
public void addBonePose(Node node, Matrix4 matrix, boolean localMatrix)
Saves pose transformation matrix for the given bone node.- Parameters:
node
- Bone Node.matrix
- Transformation matrix.localMatrix
- If set totrue
means to use local matrix otherwise means global matrix.
-
-