(float x, float y)
| 1184 | |
| 1185 | |
| 1186 | @Override |
| 1187 | public void point(float x, float y) { |
| 1188 | if (stroke) { |
| 1189 | // if (strokeWeight > 1) { |
| 1190 | line(x, y, x + EPSILON, y + EPSILON); |
| 1191 | // } else { |
| 1192 | // set((int) screenX(x, y), (int) screenY(x, y), strokeColor); |
| 1193 | // } |
| 1194 | } |
| 1195 | } |
| 1196 | |
| 1197 | |
| 1198 | @Override |