MCPcopy Index your code
hub / github.com/processing/processing / point

Method point

core/src/processing/awt/PGraphicsJava2D.java:1186–1195  ·  view source on GitHub ↗
(float x, float y)

Source from the content-addressed store, hash-verified

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

Callers 1

vertexMethod · 0.95

Calls 1

lineMethod · 0.95

Tested by

no test coverage detected