ceil method

Point<int> ceil()

Create a new Point where the x and y values are rounded up to the nearest integer.

Implementation

Point<int> ceil() {
  return Point<int>(x.ceil(), y.ceil());
}