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