floor method

Point<int> floor()

Implementation

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