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

Method point

core/src/processing/javafx/PGraphicsFX2D.java:686–695  ·  view source on GitHub ↗
(float x, float y)

Source from the content-addressed store, hash-verified

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

Callers 1

vertexMethod · 0.95

Calls 1

lineMethod · 0.95

Tested by

no test coverage detected