Temporary data used by the update of a soft body.
More...
#include <SoftBodyUpdateContext.h>
|
static constexpr uint | cVertexCollisionBatch = 64 |
| Number of vertices to process in a batch in DetermineCollisionPlanes.
|
|
static constexpr uint | cVertexConstraintBatch = 256 |
| Number of vertices to group for processing batches of constraints in ApplyEdgeConstraints.
|
|
Temporary data used by the update of a soft body.
◆ EState
Describes progress in the current update.
Enumerator |
---|
DetermineCollisionPlanes | Determine collision planes for vertices in parallel.
|
DetermineSensorCollisions | Determine collisions with sensors in parallel.
|
ApplyConstraints | Apply constraints in parallel.
|
Done | Update is finished.
|
◆ cVertexCollisionBatch
constexpr uint SoftBodyUpdateContext::cVertexCollisionBatch = 64 |
|
staticconstexpr |
Number of vertices to process in a batch in DetermineCollisionPlanes.
◆ cVertexConstraintBatch
constexpr uint SoftBodyUpdateContext::cVertexConstraintBatch = 256 |
|
staticconstexpr |
Number of vertices to group for processing batches of constraints in ApplyEdgeConstraints.
◆ mBody
Body* SoftBodyUpdateContext::mBody |
Body that is being updated.
◆ mCanSleep
Can the body sleep? Should be applied after the update.
◆ mCenterOfMassTransform
RMat44 SoftBodyUpdateContext::mCenterOfMassTransform |
Transform of the body relative to the soft body.
◆ mContactListener
Contact listener to fire callbacks to.
◆ mDeltaPosition
Vec3 SoftBodyUpdateContext::mDeltaPosition |
Delta position of the body in the current time step, should be applied after the update.
◆ mDeltaTime
float SoftBodyUpdateContext::mDeltaTime |
Delta time for the current time step.
◆ mDisplacementDueToGravity
Vec3 SoftBodyUpdateContext::mDisplacementDueToGravity |
Displacement of the center of mass due to gravity in the current time step.
◆ mGravity
Vec3 SoftBodyUpdateContext::mGravity |
Gravity vector in local space of the soft body.
◆ mMotionProperties
Motion properties of that body.
◆ mNextCollisionVertex
atomic<uint> SoftBodyUpdateContext::mNextCollisionVertex { 0 } |
Next vertex to process for DetermineCollisionPlanes.
◆ mNextConstraintGroup
atomic<uint> SoftBodyUpdateContext::mNextConstraintGroup { 0 } |
Next constraint group to process.
◆ mNextIteration
atomic<uint> SoftBodyUpdateContext::mNextIteration { 0 } |
Next simulation iteration to process.
◆ mNextSensorIndex
atomic<uint> SoftBodyUpdateContext::mNextSensorIndex { 0 } |
Next sensor to process for DetermineCollisionPlanes.
◆ mNumCollisionVerticesProcessed
atomic<uint> SoftBodyUpdateContext::mNumCollisionVerticesProcessed { 0 } |
Number of vertices processed by DetermineCollisionPlanes, used to determine if we can go to the next step.
◆ mNumConstraintGroupsProcessed
atomic<uint> SoftBodyUpdateContext::mNumConstraintGroupsProcessed { 0 } |
Number of groups processed, used to determine if we can go to the next iteration.
◆ mNumSensorsProcessed
atomic<uint> SoftBodyUpdateContext::mNumSensorsProcessed { 0 } |
Number of sensors processed by DetermineSensorCollisions, used to determine if we can go to the next step.
◆ mState
Current state of the update.
◆ mSubStepDeltaTime
float SoftBodyUpdateContext::mSubStepDeltaTime |
Delta time for each sub step.
The documentation for this class was generated from the following file: