floor method

Point<int> floor()

Return a floored version of this point.

Implementation

Point<int> floor() => Point<int>(x.floor(), y.floor());