Class: vec4

vec4

4 Dimensional Vector

Constructor

new vec4()

Source:

Methods

(static) dist()

Alias for vec4.distance
Source:

(static) div()

Alias for vec4.divide
Source:

(static) forEach(a, stride, offset, count, fn, argopt) → {Array}

Perform some operation over an array of vec4s.
Parameters:
Name Type Attributes Description
a Array the array of vectors to iterate over
stride Number Number of elements between the start of each vec4. If 0 assumes tightly packed
offset Number Number of elements to skip at the beginning of the array
count Number Number of vec4s to iterate over. If 0 iterates over entire array
fn function Function to call for each vector in the array
arg Object <optional>
additional argument to pass to fn
Source:
Returns:
a
Type
Array

(static) length()

Alias for vec4.len
Source:

(static) mul()

Alias for vec4.multiply
Source:

(static) sqrDist()

Alias for vec4.squaredDistance
Source:

(static) sqrLen()

Alias for vec4.squaredLength
Source:

(static) sub()

Alias for vec4.subtract
Source: