ceil method

CustomPoint<int> ceil()
inherited

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

Implementation

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