Options
All
  • Public
  • Public/Protected
  • All
Menu

Class representing a four-dimensional Vector with properties x, y, z and w and providing static utilities for mathematical operations

Hierarchy

  • Vec4

Index

Constructors

  • new Vec4(x?: number, y?: number, z?: number, w?: number): Vec4
  • Constructor. Take and store the Vec4's x, y, z and w properties

    Parameters

    • x: number = 0

      the Vec4's x; defaults to 0

    • y: number = 0

      the Vec4's y; defaults to 0

    • z: number = 0

      the Vec4's z; defaults to 0

    • w: number = 0

      the Vec4's w; defaults to 0

    Returns Vec4

Properties

w: number = 0
x: number = 0
y: number = 0
z: number = 0

Accessors

  • get array(): number[]
  • Getter for the Array form of the Vec4

    Returns number[]

  • get float32Array(): Float32Array
  • Getter for the Float32Array form of the Vec4

    Returns Float32Array

  • get magnitude(): number
  • Getter for the Vec4's magnitude

    Returns number

  • get string(): string
  • Getter for the readable string form of the Vec4

    Returns string

Methods

  • Clone the Vec4

    Returns Vec4

    a new Vec4 with the same x, y, z and w as this one

  • set(x?: number, y?: number, z?: number, w?: number): void
  • Set the Vec4's x, y, z and w to the given values

    Parameters

    • x: number = 0

      the new x; defaults to 0

    • y: number = 0

      the new y; defaults to 0

    • z: number = 0

      the new z; defaults to 0

    • w: number = 0

      the new w; defaults to 0

    Returns void

  • setW(w?: number): void
  • Set the Vec4's w to the given value

    Parameters

    • w: number = 0

      the new w; defaults to 0

    Returns void

  • setX(x?: number): void
  • Set the Vec4's x to the given value

    Parameters

    • x: number = 0

      the new x; defaults to 0

    Returns void

  • setY(y?: number): void
  • Set the Vec4's y to the given value

    Parameters

    • y: number = 0

      the new y; defaults to 0

    Returns void

  • setZ(z?: number): void
  • Set the Vec4's z to the given value

    Parameters

    • z: number = 0

      the new z; defaults to 0

    Returns void

  • Add two Vec4s

    Parameters

    • left: Vec4

      the first vec4

    • right: Vec4

      the second Vec4

    Returns Vec4

    the result of the addition

  • distanceBetween(left: Vec4, right: Vec4): number
  • Calculate the distance between two Vec4s

    Parameters

    • left: Vec4

      the first Vec4

    • right: Vec4

      the second Vec4

    Returns number

    the distance between the two Vec4s

  • Divide the left Vec4 by the right

    Parameters

    • left: Vec4

      the Vec4 to divide

    • right: Vec4

      the Vec4 to divide by

    Returns Vec4

    the result of the division

  • Calculate the dot product of two Vec4s

    Parameters

    • left: Vec4

      the first Vec4

    • right: Vec4

      the second Vec4

    Returns number

    the dot product of the two Vec4s

  • Invert a Vec4

    Parameters

    • v: Vec4

      the Vec4 to invert

    Returns Vec4

    the inverse of the Vec4

  • Multiply two Vec4s

    Parameters

    • left: Vec4

      the first Vec4

    • right: Vec4

      the second Vec4

    Returns Vec4

    the result of the multiplication

  • Negate a Vec4

    Parameters

    • v: Vec4

      the Vec4 to negate

    Returns Vec4

    the negated Vec4

  • Normalize a Vec4

    Parameters

    • v: Vec4

      the Vec4 to normalize

    Returns Vec4

    the normalized Vec4

  • Scale a Vec4 by a given factor

    Parameters

    • v: Vec4

      the Vec4 to scale

    • factor: number

      the factor to scale by

    Returns Vec4

    the scalec Vec4

  • Subtract the right Vec4 from the left

    Parameters

    • left: Vec4

      the Vec4 to subtract from

    • right: Vec4

      the Vec4 to subtract

    Returns Vec4

    the result of the subtraction