Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StructureCluster

While the rigid body class (& the core of the engine) is abstracted from any molecular-related data model, structure cluster encapsulates a list of coarse-grained monomers, treating them as single rigid body object.

Hierarchy

Index

Constructors

constructor

Properties

Private _elements

_elements: CgMonomerProxy[]

Private _elementsComponents

_elementsComponents: Set<CgStructureComponent>

Protected currPositionStep

currPositionStep: Vector3

Protected currRotationStep

currRotationStep: Quaternion

Accessors

angularVelocity

  • get angularVelocity(): Vector3

elements

Protected force

  • get force(): Vector3
  • set force(value: Vector3): void
  • Sets new force to be applied (overriding accumulated forces). Use this setter only when you know what you are doing. Otherwise, use addForce* functions.

    Returns Vector3

    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.

    Parameters

    • value: Vector3

    Returns void

    current force to be applied

friction

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

Protected impulseForce

  • get impulseForce(): Vector3
  • set impulseForce(value: Vector3): void

Protected impulseTorque

  • get impulseTorque(): Vector3
  • set impulseTorque(value: Vector3): void

linearVelocity

  • get linearVelocity(): Vector3

position

  • get position(): Vector3
  • set position(value: Vector3): void

rotation

  • get rotation(): Quaternion
  • set rotation(value: Quaternion): void

shape

Protected torque

  • get torque(): Vector3
  • set torque(value: Vector3): void
  • Sets new torque to be applied (overriding accumulated torque). Use this setter only when you know what you are doing. Otherwise, use addForce* functions.

    Returns Vector3

    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.

    Parameters

    • value: Vector3

    Returns void

    current torque to be applied

Methods

addForce

  • addForce(force: Vector3): void
  • 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.

    Parameters

    • force: Vector3

      force to add

    Returns void

addForceAtPosition

  • addForceAtPosition(force: Vector3, worldPosition: Vector3): void
  • 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.

    Parameters

    • force: Vector3

      force to add

    • worldPosition: Vector3

      location where the force should be applied

    Returns void

addImpulse

  • addImpulse(impulse: Vector3): void

addImpulseAtPosition

  • addImpulseAtPosition(impulse: Vector3, worldPosition: Vector3): void
  • 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.

    Parameters

    • impulse: Vector3

      impulse to apply

    • worldPosition: Vector3

      location where the impulse should be applied

    Returns void

clearForceAndTorque

  • clearForceAndTorque(): void

getBoundingBox

  • getBoundingBox(): Box3

getBoundingSphere

  • getBoundingSphere(): Sphere

Private getComponents

getCurrentForce

  • getCurrentForce(): Vector3

getCurrentTorque

  • getCurrentTorque(): Vector3

localToWorldPos

  • localToWorldPos(pos: Vector3): Vector3

Private updateElementsPositions

  • updateElementsPositions(): void

updatePosition

  • updatePosition(dt: number): void

worldToLocalPos

  • worldToLocalPos(pos: Vector3): Vector3

Generated using TypeDoc