ceil method

CustomPoint<int> ceil()

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

Implementation

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