Calculates the dot product of two vectors.
// Returns 32const dot = Chalkboard.vect.dot(Chalkboard.vect.init(2, 3, 4), Chalkboard.vect.init(3, 4, 5)); Copy
// Returns 32const dot = Chalkboard.vect.dot(Chalkboard.vect.init(2, 3, 4), Chalkboard.vect.init(3, 4, 5));
The first vector
The second vector
Calculates the dot product of two vectors.
Example