ceil method

Vector2 ceil()

Implementation

Vector2 ceil() {
  x = Math.ceil(x).toDouble();
  y = Math.ceil(y).toDouble();

  return this;
}