Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Transform

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

Hierarchy

Index

Constructors

  • new Transform(initialPosition?: Vec2, initialScale?: Vec2, initialAngle?: number, velocity?: Vec2): Transform
  • Constructor. Take the initial position, scale, angle and velocity of the Entity and provide the name 'Transform' to the parent class

    Parameters

    • initialPosition: Vec2 = ...

      the 2D position of the Entity

    • initialScale: Vec2 = ...

      the 2D scale of the Entity

    • initialAngle: number = 0

      the initial rotation of the Entity

    • velocity: Vec2 = ...

      the initial 2D velocity of the Entity

    Returns Transform

Properties

angle: number = 0

Maintained rotation angle (radians)

initialAngle: number = 0
initialPosition: Vec2 = ...
initialScale: Vec2 = ...
name: string
position: Vec2 = ...

Maintained position

right: Vec2 = ...

Maintained 'right' Axis

scale: Vec2 = ...

Maintained scale factor

up: Vec2 = ...

Maintained 'up' Axis

velocity: Vec2 = ...

Methods

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

    Returns Mat3

    the Transform matrix

  • move(amounts: Vec2): void
  • Move along both the right and up axes by a given 2D vector (relative to self)

    Parameters

    • amounts: Vec2

      the 2D vector 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

    Returns void

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

    Returns void

  • rotate(angle: number): void
  • Rotate by a given angle (radians)

    Parameters

    • angle: number

      the angle to rotate by

    Returns void

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

    Parameters

    • factor: Vec2

      the 2D factor to scale by

    Returns void

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

    Parameters

    • factor: Vec2

      the 2D factor to scale to

    Returns void

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

    Parameters

    • translate: Vec2

      the translation vector

    Returns void