(int x, int y)
| 732 | } |
| 733 | |
| 734 | private void d(int x, int y) { |
| 735 | x *= scale; |
| 736 | y *= scale; |
| 737 | x += xOffset; |
| 738 | y += yOffset; |
| 739 | g.drawLine(this.x, this.y, x, y); |
| 740 | this.x = x; |
| 741 | this.y = y; |
| 742 | } |
| 743 | |
| 744 | private void dot(int x, int y) { |
| 745 | g.fillRect(xOffset+x*scale, yOffset+y*scale, 1*scale, 1*scale); |
no test coverage detected