ceil method

Vector3 ceil()

Implementation

Vector3 ceil() {
  x = Math.ceil(x).toDouble();
  y = Math.ceil(y).toDouble();
  z = Math.ceil(z).toDouble();

  return this;
}