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