Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RbSpringJoint

Implementation of a spring-based joint, following the Hooke's law definition: http://labman.phys.utk.edu/phys221core/modules/m3/Hooke's%20law.html

Hierarchy

Index

Constructors

constructor

  • new RbSpringJoint(rbStart: RigidBody, rbStartConnPtLocal: Vector3, rbEnd: RigidBody, rbEndConnPtLocal: Vector3, springConstant: number, restLength: number, breakForce?: number): RbSpringJoint
  • Parameters

    • rbStart: RigidBody

      rigid body where the joint starts

    • rbStartConnPtLocal: Vector3

      point in the local space of the starting rigid body where the connection should start

    • rbEnd: RigidBody

      rigid body where the joint ends

    • rbEndConnPtLocal: Vector3

      point in the local space of the ending rigid body where the connection should end

    • springConstant: number

      spring constant

    • restLength: number

      resting/equilibrium length of the spring

    • Default value breakForce: number = Infinity

      how much force is needed to apply to break the spring (if set to Infinity, break force is ignored)

    Returns RbSpringJoint

Properties

Protected _isBroken

_isBroken: boolean

Private _restLength

_restLength: number

Private _springConstant

_springConstant: number

Accessors

breakForce

  • get breakForce(): number
  • set breakForce(value: number): void
  • Sets amount of force needed to break (basically tear-apart) this joint. Once the joint has been broken, setting new force cannot "repair" it.

    Returns number

    amount of force needed to break (basically tear-apart) this joint.

  • Sets amount of force needed to break (basically tear-apart) this joint. Once the joint has been broken, setting new force cannot "repair" it.

    Parameters

    • value: number

    Returns void

    amount of force needed to break (basically tear-apart) this joint.

endConnectionPoint

  • get endConnectionPoint(): Vector3

endRigidBody

isBroken

  • get isBroken(): boolean

restLength

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

springConstant

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

startConnectionPoint

  • get startConnectionPoint(): Vector3

startRigidBody

Methods

applyForces

  • applyForces(): void

applyJointForces

  • applyJointForces(): void

Generated using TypeDoc