Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type Aliases

Vector3AsArray: [x: number, y: number, z: number]

A Vector3 representation as an array.

Functions

  • Returns the angle, in radians, between two vectors.

    The angle returned is the unsigned angle between the two vectors. This means the smaller of the two possible angles between the two vectors is used. The result is never greater than 180 degrees.

    Parameters

    Returns number

  • Returns a vector that is the cross product of two vectors.

    The cross product of two vectors results in a third vector which is perpendicular to the two input vectors. The result's magnitude is equal to the magnitudes of the two inputs multiplied together and then multiplied by the sine of the angle between the inputs. You can determine the direction of the result vector using the "left hand rule".

    Parameters

    Returns Vector3

  • Returns a value representing the dot product of two vectors.

    The dot product is a float value equal to the magnitudes of the two vectors multiplied together and then multiplied by the cosine of the angle between them.

    Parameters

    Returns number

  • fromArray(nums: number[], offset?: number): Vector3
  • Creates a Vector3 from an array. Pass offset to read values from the starting index.

    see

    #toArray()

    see

    #create()

    Parameters

    • nums: number[]
    • offset: number = 0

    Returns Vector3

  • Parses a JSON string representation of a Vector3 and returns an object.

    Parameters

    • json: string

      A JSON string, either in the form [x,y,z] or {"x": 0, "y": 0, "z": 0}

    Returns Vector3

    A parsed Vector3.

  • isValid(__namedParameters: Vector3): boolean
  • Checks if each component of the given vector is populated with a numeric component. A component is invalid if it contains a non-finite or NaN value.

    Parameters

    Returns boolean

  • Performs a linear interpolation between a and b and returns the result. The value of t is clamped between [0, 1].

    Parameters

    • a: Vector3

      The start value.

    • b: Vector3

      The end value.

    • t: number

      A value between 0 and 1.

    Returns Vector3

    A point between a and b.

  • magnitudeSquared(vector: Vector3): number
  • Returns the straight-line length from (0, 0, 0) to the given vector).

    When comparing lengths of vectors, you should use this function as it's slightly more efficient to calculate.

    Parameters

    Returns number

  • Performs a projection of a vector onto onNormal.

    A projection is represented as the nearest point along a normal to a vector, which constructs a triangle from the origin, to the vector, to the projected point.

    Vector -->  *   * <-- Projected
    \
    \ | <-- Normal
    \|
    * <-- Origin

    Parameters

    Returns Vector3

  • Returns a vector that is rotated about an origin point.

    Parameters

    • angle: number

      The angle to rotate, in radians.

    • point: Vector3

      The origin point to rotate around.

    • axisDirection: Vector3

      The direction used to compute the axis.

    • axisPosition: Vector3

      The point of the axis.

    Returns Vector3

  • Maps a normalized device coordinate (NDC) space to world space coordinates.

    Parameters

    • ndc: Vector3

      A point in normalized device coordinates.

    • worldMatrix: Matrix4

      A camera's world matrix.

    • projectionMatrixInverse: Matrix4

      A camera's inverse projection matrix.

    Returns Vector3

    A point in world space coordinates.