From 6d392a7c9dfc4c59b19c0f0d56a71a75f201f7f3 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Fri, 28 Oct 2016 14:45:43 -0700 Subject: [PATCH] Added related reference to point() --- core/src/processing/core/PApplet.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 048276d8a..dcd9ee781 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -11390,6 +11390,7 @@ public class PApplet implements PConstants { * @webref shape:2d_primitives * @param x x-coordinate of the point * @param y y-coordinate of the point + * @see PGraphics#stroke(int) */ public void point(float x, float y) { if (recorder != null) recorder.point(x, y);