current angular velocity
Sets new force to be applied (overriding accumulated forces). Use this setter only when you know what you are doing. Otherwise, use addForce* functions.
current force to be applied
Sets new force to be applied (overriding accumulated forces). Use this setter only when you know what you are doing. Otherwise, use addForce* functions.
current force to be applied
Sets new friction coefficient
friction coefficient
Sets new friction coefficient
friction coefficient
Sets new impulse-based force to be applied. Use this setter only when you know what you are doing. Otherwise, use addImpulse* functions.
current impulse-based force to be applied
Sets new impulse-based force to be applied. Use this setter only when you know what you are doing. Otherwise, use addImpulse* functions.
current impulse-based force to be applied
Sets new impulse-based torque to be applied. Use this setter only when you know what you are doing. Otherwise, use addImpulse* functions.
current impulse-based torque to be applied
Sets new impulse-based torque to be applied. Use this setter only when you know what you are doing. Otherwise, use addImpulse* functions.
current impulse-based torque to be applied
current linear velocity
Sets new position of this rigid body
position of this rigid body
Sets new position of this rigid body
position of this rigid body
Sets new rigid body rotation
rotation of this rigid body
Sets new rigid body rotation
rotation of this rigid body
Sets new torque to be applied (overriding accumulated torque). Use this setter only when you know what you are doing. Otherwise, use addForce* functions.
current torque to be applied
Sets new torque to be applied (overriding accumulated torque). Use this setter only when you know what you are doing. Otherwise, use addForce* functions.
current torque to be applied
Applies a given force to the rigid body. The force is applied once in "force-per-seconds" units. In other words, applying force of X per one second would result in the same amount of force added as single impulse of magnitude X.
force to add
Applies a given force to the rigid body at the desired point. The force is applied once in "force-per-seconds" units. In other words, applying force of X per one second would result in the same amount of force added as single impulse of magnitude X.
force to add
location where the force should be applied
Applies impulse to the rigid body. Contrary to force, impulse is applied immediately, i.e., it uses sort of "force-per-frame" units.
impulse to apply
Applies a given impulse to the rigid body at the desired point. Contrary to force, impulse is applied immediately, i.e., it uses sort of "force-per-frame" units.
impulse to apply
location where the impulse should be applied
Clears both impulse & non-impulse force and torque vectors
Force to be applied during next simulation iteration. Includes also force generated by impulses.
Torque to be applied during the next simulation iteration. Covers also torque generated by impulses.
Converts position in the local space of this rigid body to world space.
local position to convert
corresponding world space position
Updates position and rotation of this rigid body, using the current force & torque (both impulse & non-impulse) values.
time step
Convers position from world space to the corresponding one in the local space of this rigid body.
world space position to convert
corresponding local space position
Generated using TypeDoc
Class implementing single rigid body, i.e., a rigid object involved in the rigid body physics simulation.
Some sources related to rigid body engine implementation: https://www.toptal.com/game/video-game-physics-part-i-an-introduction-to-rigid-body-dynamics http://www.cs.cmu.edu/~baraff/sigcourse/notesd1.pdf https://blog.winter.dev/2020/designing-a-physics-engine/