Creates a new Mappoint that is offset by the given dx and dy values.
Mappoint
Mappoint offsetAbsolute(double dx, double dy) { if (0 == dx && 0 == dy) { return this; } return Mappoint(x + dx, y + dy); }