ceil method

Vector3 ceil()

The x, y and z components of this vector are rounded up to the nearest integer value.

Implementation

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

  return this;
}