Checks if two vectors are equal.
// Returns true (the vectors are equal)const equal = Chalkboard.vect.isEqual(Chalkboard.vect.init(1, 2, 3), Chalkboard.vect.init(1, 2, 3)); Copy
// Returns true (the vectors are equal)const equal = Chalkboard.vect.isEqual(Chalkboard.vect.init(1, 2, 3), Chalkboard.vect.init(1, 2, 3));
The first vector
The second vector
Checks if two vectors are equal.
Example