Calculates the vector triple product of three vectors.
// Returns (0, 0, 0)const product = Chalkboard.vect.vectorTriple( Chalkboard.vect.init(1, 0, 0), Chalkboard.vect.init(0, 1, 0), Chalkboard.vect.init(0, 0, 1)); Copy
// Returns (0, 0, 0)const product = Chalkboard.vect.vectorTriple( Chalkboard.vect.init(1, 0, 0), Chalkboard.vect.init(0, 1, 0), Chalkboard.vect.init(0, 0, 1));
The first vector
The second vector
The third vector
Calculates the vector triple product of three vectors.
Example