ceil method

CustomPoint<T> ceil()

Create new CustomPoint whose x and y values are rounded up to int

Implementation

CustomPoint<T> ceil() {
  return CustomPoint(x.ceil(), y.ceil());
}