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