floor method
Implementation
Vector4 floor() {
x = Math.floor(x);
y = Math.floor(y);
z = Math.floor(z);
w = Math.floor(w);
return this;
}
Vector4 floor() {
x = Math.floor(x);
y = Math.floor(y);
z = Math.floor(z);
w = Math.floor(w);
return this;
}