- All Implemented Interfaces:
Serializable,Comparable<PxArticulationCacheFlagEnum>,Constable
These flags determine what data is read or written to the internal articulation data via cache.
See also: PxArticulationCache PxArticulationReducedCoordinate::copyInternalStateToCache PxArticulationReducedCoordinate::applyCache
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe joint accelerations, see PxArticulationCache::jointAcceleration.The joint forces, see PxArticulationCache::jointForce.The joint target positions, see PxArticulationCache::jointTargetPositions.The joint target velocities, see PxArticulationCache::jointTargetVelocities.The link accelerations, see PxArticulationCache::linkAcceleration.The link incoming joint forces, see PxArticulationCache::linkIncomingJointForce.The link velocities, see PxArticulationCache::linkVelocity.The joint positions, see PxArticulationCache::jointPosition.The root link transform, see PxArticulationCache::rootLinkData.The root link velocities (read/write) and accelerations (read), see PxArticulationCache::rootLinkData.The joint velocities, see PxArticulationCache::jointVelocity. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic PxArticulationCacheFlagEnumforValue(int value) static PxArticulationCacheFlagEnumReturns the enum constant of this class with the specified name.static PxArticulationCacheFlagEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
eVELOCITY
The joint velocities, see PxArticulationCache::jointVelocity. -
eACCELERATION
The joint accelerations, see PxArticulationCache::jointAcceleration. -
ePOSITION
The joint positions, see PxArticulationCache::jointPosition. -
eFORCE
The joint forces, see PxArticulationCache::jointForce. -
eLINK_VELOCITY
The link velocities, see PxArticulationCache::linkVelocity. Link velocities cannot be set except for the root link velocity via PxArticulationCache::rootLinkData. -
eLINK_ACCELERATION
The link accelerations, see PxArticulationCache::linkAcceleration. -
eROOT_TRANSFORM
The root link transform, see PxArticulationCache::rootLinkData. -
eROOT_VELOCITIES
The root link velocities (read/write) and accelerations (read), see PxArticulationCache::rootLinkData. -
eLINK_INCOMING_JOINT_FORCE
The link incoming joint forces, see PxArticulationCache::linkIncomingJointForce. -
eJOINT_TARGET_POSITIONS
The joint target positions, see PxArticulationCache::jointTargetPositions. -
eJOINT_TARGET_VELOCITIES
The joint target velocities, see PxArticulationCache::jointTargetVelocities. -
eALL
-
-
Field Details
-
value
public final int value
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
forValue
-