round method

Point<int> round()

Implementation

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