southeast property

Point<int> get southeast

The point to the southeast of this point.

Implementation

Point<int> get southeast => Point(x + 1, y - 1);