roundToZero method
Implementation
Vector4 roundToZero() {
x = (x < 0) ? Math.ceil(x) : Math.floor(x);
y = (y < 0) ? Math.ceil(y) : Math.floor(y);
z = (z < 0) ? Math.ceil(z) : Math.floor(z);
w = (w < 0) ? Math.ceil(w) : Math.floor(w);
return this;
}