floor method

CustomPoint<T> floor()

Implementation

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