Initializes a vector with all its components filled with one number.
// Returns (5, 5, 5)const v = Chalkboard.vect.fill(5, 3); Copy
// Returns (5, 5, 5)const v = Chalkboard.vect.fill(5, 3);
The number
The dimension of the vector, which can be 2, 3, or 4
Initializes a vector with all its components filled with one number.
Example