Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Transform

3D Transform Component, defining the "physical" attributes of an Entity as well as transformation methods, enabling presence in 3D space

Hierarchy

Index

Constructors

  • Constructor. Take the initial position, scale, angles and velocity of the Entity and provide the name 'Transform' to the parent class

    Parameters

    • initialPosition: Vec3 = ...

      the 3D position of the Entity

    • initialScale: Vec3 = ...

      the 3D scale of the Entity

    • initialAngles: Vec3 = ...
    • velocity: Vec3 = ...

      the initial 3D velocity of the Entity

    Returns Transform

Properties

angles: Vec3 = ...

Maintained rotation angles (radians)

forward: Vec3 = ...

Maintained 'forward' Axis

initialAngles: Vec3 = ...
initialPosition: Vec3 = ...
initialScale: Vec3 = ...
name: string
position: Vec3 = ...

Maintained position

right: Vec3 = ...

Maintained 'right' Axis

scale: Vec3 = ...

Maintained scale factor

up: Vec3 = ...

Maintained 'up' Axis

velocity: Vec3 = ...

Methods

  • Compute the composite Transform Matrix from the maintained translation, scaling and rotation

    Returns Mat4

    the Transform matrix

  • move(amounts: Vec3): void
  • Move along all three axes by a given 3D vector (relative to self)

    Parameters

    • amounts: Vec3

      the 3D vector to move by

    Returns void

  • moveForward(amount: number): void
  • Move along the forward axis by a given amount (relative to self)

    Parameters

    • amount: number

      the amount to move by

    Returns void

  • moveRight(amount: number): void
  • Move along the right axis by a given amount (relative to self)

    Parameters

    • amount: number

      the amount to move by

    Returns void

  • moveUp(amount: number): void
  • Move along the up axis by a given amount (relative to self)

    Parameters

    • amount: number

      the amount to move by

    Returns void

  • reset(): void
  • Reset all transformations back to their initial values

    Returns void

  • rotate(angles: Vec3): void
  • Rotate around all three axes by 3 given angles (radians)

    Parameters

    • angles: Vec3

      the X, Y and Z angles to rotate by

    Returns void

  • rotateX(angle: number): void
  • Rotate by a given angle (radians) around the X axis; pitch

    Parameters

    • angle: number

      the angle to rotate by

    Returns void

  • rotateY(angle: number): void
  • Rotate by a given angle (radians) around the Y axis; yaw

    Parameters

    • angle: number

      the angle to rotate by

    Returns void

  • rotateZ(angle: number): void
  • Rotate by a given angle (radians) around the Z axis; roll

    Parameters

    • angle: number

      the angle to rotate by

    Returns void

  • scaleBy(factor: Vec3): void
  • Scale by a given factor (relative to current scale)

    Parameters

    • factor: Vec3

      the 3D factor to scale by

    Returns void

  • scaleTo(factor: Vec3): void
  • Scale to a given absolute factor

    Parameters

    • factor: Vec3

      the 3D factor to scale to

    Returns void

  • translate(translate: Vec3): void
  • Move by a given translation vector (relative to world axes)

    Parameters

    • translate: Vec3

      the translation vector

    Returns void