Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RigidBodySimulator

Class managing the rigid body dynamics simulation

Hierarchy

  • RigidBodySimulator

Implements

Index

Constructors

constructor

  • Parameters

    • stage: Stage

      an instance of a Stage class

    • Default value timeStep: number = -1

      simulation time step, i.e., how large intervals are between each step. If set to value > 0, the time step is not related to actual computational time but rather describes precision of the computation.

    • Default value collResForceMultiplier: number = 5

      value determining how much to strengthen/weaken the collision resolution forces

    Returns RigidBodySimulator

Properties

Private _bodies

_bodies: RigidBody[]

Private _bodiesDebugObjects

_bodiesDebugObjects: { forceDir: ArrowHelper; origin: Box3Helper; torqueDir: ArrowHelper }[]

Private _collResolutionForceMult

_collResolutionForceMult: number

Private _isRunning

_isRunning: boolean

Private _isRunningPaused

_isRunningPaused: boolean

Private _joints

_joints: RbJoint[]

Private _jointsDebugObjects

_jointsDebugObjects: { startEndConnection: ArrowHelper }[]

Private _stage

_stage: Stage

Private _timeStep

_timeStep: number

Time step of the rigid body simulator. If set to value <= 0, the time step will match the rendering delta time.

Accessors

collisionResolutionForceMult

  • get collisionResolutionForceMult(): number
  • set collisionResolutionForceMult(value: number): void

isRunning

  • get isRunning(): boolean

joints

rigidBodies

stage

timeStep

  • get timeStep(): number
  • set timeStep(value: number): void

Methods

addJoint

  • Includes new joint in the simulation. Note: expects that the rigid bodies at the ends of the joint already are or will be included as well (using the appropriate method) in the simulator or the behavior is undefined.

    Parameters

    Returns void

addRigidBody

applyExplosionAtCenterOfMass

  • applyExplosionAtCenterOfMass(strength: number): void

clearData

  • clearData(): void

Private computeContactForces

  • computeContactForces(caller: RigidBody, dt: number): void

continue

  • continue(): void

onUpdate

  • onUpdate(deltaTime: number): void

pause

  • pause(): void

removeJoint

  • removeJoint(joint: RbJoint): void

removeRigidBody

Private renderDebugObjects

  • renderDebugObjects(): void

setJoints

  • setJoints(joints: RbJoint[]): void

setRigidBodies

Private simulationStep

  • simulationStep(dt: number): void

start

  • Starts the simulation

    Parameters

    • Optional bodies: RigidBody[]

      bodies to be included. If not set, bodies added via other simulator functions will be used. Otherwise, already added bodies will be replaced with these.

    • Optional joints: RbJoint[]

      joints to be included. If not set, joints added via other simulator functions will be used. Otherwise, already added joints will be replaced with these.

    Returns void

stop

  • stop(): void

Object literals

Readonly signals

signals: object

Events emitted by the simulator

simulationStepExecuted

simulationStepExecuted: Signal<T> = new Signal()

Generated using TypeDoc