(float x, float y)
| 684 | |
| 685 | |
| 686 | @Override |
| 687 | public void point(float x, float y) { |
| 688 | if (stroke) { |
| 689 | // if (strokeWeight > 1) { |
| 690 | line(x, y, x + EPSILON, y + EPSILON); |
| 691 | // } else { |
| 692 | // set((int) screenX(x, y), (int) screenY(x, y), strokeColor); |
| 693 | // } |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | |
| 698 | @Override |