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)
);