(int x, int y)
| 516 | } |
| 517 | |
| 518 | void drawPoint(int x, int y) { |
| 519 | g.setColor(toolColor); |
| 520 | m(x-3,y); d(x+3,y); |
| 521 | m(x,y-3); d(x,y+3); |
| 522 | g.setColor(Roi.getColor()); |
| 523 | dot(x,y); dot(x-1,y-1); |
| 524 | } |
| 525 | |
| 526 | void drawIcon(Graphics g, int tool, int x, int y) { |
| 527 | if (null==g) return; |