Floor (round down) the coordinates of a vector See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/floor
target vector
vector rounded down
vecFloor([0.1, 1.5]); // returns [0, 1]vecFloor([-0.1, -1.5]); // returns [-1, -2] Copy
vecFloor([0.1, 1.5]); // returns [0, 1]vecFloor([-0.1, -1.5]); // returns [-1, -2]
Floor (round down) the coordinates of a vector See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/floor