Home

Library goog.vec.Vec3

Function Summary
add(?goog.vec.Vec3.Vec3Like vec0, ?goog.vec.Vec3.Vec3Like vec1, ?goog.vec.Vec3.Vec3Like resultVec) ⇒ !goog.vec.Vec3.Vec3Like

Performs a component-wise addition of vec0 and vec1 together storing the result into resultVec.

create() ⇒ !goog.vec.Vec3.Type

Creates a 3 element vector of Float32Array. The array is initialized to zero.

createFromArray(?goog.vec.Vec3.Vec3Like vec) ⇒ !goog.vec.Vec3.Type

Creates a new 3 element vector initialized with the value from the given array.

createFromValues(number v0, number v1, number v2) ⇒ !goog.vec.Vec3.Type

Creates a new 3 element vector initialized with the supplied values.

cross(?goog.vec.Vec3.Vec3Like v0, ?goog.vec.Vec3.Vec3Like v1, ?goog.vec.Vec3.Vec3Like resultVec) ⇒ !goog.vec.Vec3.Vec3Like

Computes the vector (cross) product of v0 and v1 storing the result into resultVec.

dot(?goog.vec.Vec3.Vec3Like v0, ?goog.vec.Vec3.Vec3Like v1) ⇒ number

Returns the scalar product of vectors v0 and v1.

equals(?goog.vec.Vec3.Vec3Like v0, ?goog.vec.Vec3.Vec3Like v1) ⇒ boolean

Returns true if the components of v0 are equal to the components of v1.

lerp(?goog.vec.Vec3.Vec3Like v0, ?goog.vec.Vec3.Vec3Like v1, number f, ?goog.vec.Vec3.Vec3Like resultVec) ⇒ !goog.vec.Vec3.Vec3Like

Linearly interpolate from v0 to v1 according to f. The value of f should be in the range [0..1] otherwise the results are undefined.

magnitude(?goog.vec.Vec3.Vec3Like vec0) ⇒ number

Returns the magnitude of the given vector.

magnitudeSquared(?goog.vec.Vec3.Vec3Like vec0) ⇒ number

Returns the magnitudeSquared of the given vector.

negate(?goog.vec.Vec3.Vec3Like vec0, ?goog.vec.Vec3.Vec3Like resultVec) ⇒ !goog.vec.Vec3.Vec3Like

Negates vec0, storing the result into resultVec.

normalize(?goog.vec.Vec3.Vec3Like vec0, ?goog.vec.Vec3.Vec3Like resultVec) ⇒ !goog.vec.Vec3.Vec3Like

Normalizes the given vector storing the result into resultVec.

scale(?goog.vec.Vec3.Vec3Like vec0, number scalar, ?goog.vec.Vec3.Vec3Like resultVec) ⇒ !goog.vec.Vec3.Vec3Like

Multiplies each component of vec0 with scalar storing the product into resultVec.

setFromArray(?goog.vec.Vec3.Vec3Like vec, ?goog.vec.Vec3.Vec3Like values)

Initializes the vector with the given array of values.

setFromValues(?goog.vec.Vec3.Vec3Like vec, number v0, number v1, number v2)

Initializes the vector with the given values.

subtract(?goog.vec.Vec3.Vec3Like vec0, ?goog.vec.Vec3.Vec3Like vec1, ?goog.vec.Vec3.Vec3Like resultVec) ⇒ !goog.vec.Vec3.Vec3Like

Performs a component-wise subtraction of vec1 from vec0 storing the result into resultVec.