Translates this TPoint by the specified displacement. @param dx the x displacement in imagespace @param dy the y displacement in imagespace
(double dx, double dy)
| 592 | * @param dy the y displacement in imagespace |
| 593 | */ |
| 594 | public void translate(double dx, double dy) { |
| 595 | setXY(x + dx, y + dy); |
| 596 | } |
| 597 | |
| 598 | /** |
| 599 | * Sets the adjusting flag. This is normally set by the mouse handler when this |
no test coverage detected