Options
All
  • Public
  • Public/Protected
  • All
Menu

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

Hierarchy

  • Vec3

Index

Constructors

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

    Parameters

    • x: number = 0

      the Vec3's x; defaults to 0

    • y: number = 0

      the Vec3's y; defaults to 0

    • z: number = 0

      the Vec3's z; defaults to 0

    Returns Vec3

Properties

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

Accessors

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

    Returns number[]

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

    Returns Float32Array

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

    Returns number

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

    Returns string

Methods

  • Clone the Vec3

    Returns Vec3

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

  • set(x?: number, y?: number, z?: number): void
  • Set the Vec3's x, y and z 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

    Returns void

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

    Parameters

    • x: number = 0

      the new x; defaults to 0

    Returns void

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

    Parameters

    • y: number = 0

      the new y; defaults to 0

    Returns void

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

    Parameters

    • z: number = 0

    Returns void

  • Add two Vec3s

    Parameters

    • left: Vec3

      the first Vec3

    • right: Vec3

      the second Vec3

    Returns Vec3

    the result of the addition

  • angleBetween(left: Vec3, right: Vec3): number
  • Calculate the angle between two Vec3s

    Parameters

    • left: Vec3

      the first Vec3

    • right: Vec3

      the second Vec3

    Returns number

    the angle between the two Vec3s (radians)

  • Calculate the cross product of two Vec3s

    Parameters

    • left: Vec3

      the first Vec3

    • right: Vec3

      the second Vec3

    Returns Vec3

    the cross product of the two Vec3s

  • distanceBetween(left: Vec3, right: Vec3): number
  • Calculate the distance between two Vec3s

    Parameters

    • left: Vec3

      the first Vec3

    • right: Vec3

      the second Vec3

    Returns number

    the distance between the two Vec3s

  • Divide the left Vec3 by the right

    Parameters

    • left: Vec3

      the Vec3 to divide

    • right: Vec3

      the Vec3 to divide by

    Returns Vec3

    the result of the division

  • Calculate the dot product of two Vec3s

    Parameters

    • left: Vec3

      the first Vec3

    • right: Vec3

      the second Vec3

    Returns number

    the dot product of the two Vec3s

  • Invert a Vec3

    Parameters

    • v: Vec3

      the Vec3 to invert

    Returns Vec3

    the inverse of the Vec3

  • Multiply two Vec3s

    Parameters

    • left: Vec3

      the first Vec3

    • right: Vec3

      the second Vec3

    Returns Vec3

    the result of the multiplication

  • Negate a Vec3

    Parameters

    • v: Vec3

      the Vec3 to negate

    Returns Vec3

    the negated Vec3

  • Normalize a Vec3

    Parameters

    • v: Vec3

      the Vec3 to normalize

    Returns Vec3

    the normalized Vec3

  • Rotate a Vec3 by a given angle (radians) about a given orgin around the X axis

    Parameters

    • v: Vec3

      the Vec3 to rotate

    • origin: Vec3

      the origin of the rotation

    • angle: number

      the angle to rotate by

    Returns Vec3

    the rotated Vec3

  • Rotate a Vec3 by a given angle (radians) about a given orgin around the Y axis

    Parameters

    • v: Vec3

      the Vec3 to rotate

    • origin: Vec3

      the origin of the rotation

    • angle: number

      the angle to rotate by

    Returns Vec3

    the rotated Vec3

  • Rotate a Vec3 by a given angle (radians) about a given orgin around the Z axis

    Parameters

    • v: Vec3

      the Vec3 to rotate

    • origin: Vec3

      the origin of the rotation

    • angle: number

      the angle to rotate by

    Returns Vec3

    the rotated Vec3

  • Scale a Vec3 by a given factor

    Parameters

    • v: Vec3

      the Vec3 to scale

    • factor: number

      the factor to scale by

    Returns Vec3

    the scaled Vec3

  • Subtract the right Vec3 from the left

    Parameters

    • left: Vec3

      the Vec3 to subtract from

    • right: Vec3

      the Vec3 to subtract

    Returns Vec3

    the result of the subtraction

  • Transform a Vec3 by a given Mat4 transformation matrix

    Parameters

    • v: Vec3

      the Vec3 to transform

    • m: Mat4

      the Mat4 to transform by

    Returns Vec3

    the transformed Vec3