added @nowebref and @notWebref tags to stroke() for a few function prototypes to avoid documenting all of them.

This commit is contained in:
sansumbrella
2011-07-24 23:32:13 +00:00
parent 6fdf71d41a
commit 0d5e96b699

View File

@@ -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();