From 0d5e96b699c3ade3d6dc0dfc143ef858aa85305b Mon Sep 17 00:00:00 2001 From: sansumbrella Date: Sun, 24 Jul 2011 23:32:13 +0000 Subject: [PATCH] added @nowebref and @notWebref tags to stroke() for a few function prototypes to avoid documenting all of them. --- core/src/processing/core/PGraphics.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index 095686954..c4a09ca3b 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -5430,6 +5430,7 @@ public class PGraphics extends PImage implements PConstants { } /** + * @nowebref * @param alpha opacity of the stroke */ public void stroke(int rgb, float alpha) { @@ -5439,6 +5440,7 @@ public class PGraphics extends PImage implements PConstants { /** + * @notWebref * @param gray specifies a value between white and black */ public void stroke(float gray) { @@ -5446,7 +5448,9 @@ public class PGraphics extends PImage implements PConstants { strokeFromCalc(); } - +/** + * @notWebref + */ public void stroke(float gray, float alpha) { colorCalc(gray, alpha); strokeFromCalc();