Selva Compute API Reference - v1.1.2
    Preparing search index...

    4D vector.

    Index

    Constructors

    • Parameters

      • Optionalx: number
      • Optionaly: number
      • Optionalz: number
      • Optionalw: number

      Returns Vector4

    Properties

    height: number
    isVector4: true
    w: number
    0
    
    width: number
    x: number
    0
    
    y: number
    0
    
    z: number
    0
    

    Methods

    • Iterating through a Vector4 instance will yield its components (x, y, z, w) in the corresponding order.

      Returns Iterator<number>

    • Adds v to this vector.

      Parameters

      Returns this

    • Parameters

      • scalar: number

      Returns this

    • Parameters

      Returns this

    • Sets this vector to a + b.

      Parameters

      Returns this

    • Parameters

      Returns this

    • Returns this

    • Parameters

      • min: number
      • max: number

      Returns this

    • Clones this vector.

      Returns this

    • Copies value of v to this vector.

      Parameters

      Returns this

    • Parameters

      Returns this

    • Divides this vector by scalar s. Set vector to ( 0, 0, 0 ) if s == 0.

      Parameters

      • s: number

      Returns this

    • Computes dot product of this vector and v.

      Parameters

      Returns number

    • Checks for strict equality of this vector and v.

      Parameters

      Returns boolean

    • Returns this

    • Sets this vector's x, y, z and w value from the provided array or array-like.

      Parameters

      • array: number[] | ArrayLike<number>

        the source array or array-like.

      • Optionaloffset: number

        (optional) offset into the array. Default is 0.

      Returns this

    • Parameters

      Returns this

    • Parameters

      • index: number

      Returns number

    • Computes length of this vector.

      Returns number

    • Computes squared length of this vector.

      Returns number

    • Linearly interpolate between this vector and v with alpha factor.

      Parameters

      Returns this

    • Parameters

      Returns this

    • Computes the Manhattan length of this vector.

      see Taxicab Geometry

      Returns number

    • Parameters

      Returns this

    • Parameters

      Returns this

    • Parameters

      Returns this

    • Multiplies this vector by scalar s.

      Parameters

      • s: number

      Returns this

    • Inverts this vector.

      Returns this

    • Normalizes this vector.

      Returns this

    • Sets this vector's x, y, z and w from Math.random

      Returns this

    • Returns this

    • Returns this

    • Sets value of this vector.

      Parameters

      • x: number
      • y: number
      • z: number
      • w: number

      Returns this

    • Parameters

      • index: number
      • value: number

      Returns this

    • Normalizes this vector and multiplies it by l.

      Parameters

      • length: number

      Returns this

    • Sets all values of this vector.

      Parameters

      • scalar: number

      Returns this

    • Sets w component of this vector.

      Parameters

      • w: number

      Returns this

    • Sets X component of this vector.

      Parameters

      • x: number

      Returns this

    • Sets Y component of this vector.

      Parameters

      • y: number

      Returns this

    • Sets Z component of this vector.

      Parameters

      • z: number

      Returns this

    • Subtracts v from this vector.

      Parameters

      Returns this

    • Parameters

      • s: number

      Returns this

    • Sets this vector to a - b.

      Parameters

      Returns this

    • Returns an array [x, y, z, w], or copies x, y, z and w into the provided array.

      Parameters

      • Optionalarray: number[]

        (optional) array to store the vector to. If this is not provided, a new array will be created.

      • Optionaloffset: number

        (optional) optional offset into the array.

      Returns number[]

      The created or provided array.

    • Returns an array [x, y, z, w], or copies x, y, z and w into the provided array.

      Parameters

      • Optionalarray: Vector4Tuple

        (optional) array to store the vector to. If this is not provided, a new array will be created.

      • Optionaloffset: 0

        (optional) optional offset into the array.

      Returns Vector4Tuple

      The created or provided array.

    • Copies x, y, z and w into the provided array-like.

      Parameters

      • array: ArrayLike<number>

        array-like to store the vector to.

      • Optionaloffset: number

        (optional) optional offset into the array-like.

      Returns ArrayLike<number>

      The provided array-like.