mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 10:55:38 +01:00
added @nowebref and @notWebref tags to stroke() for a few function prototypes to avoid documenting all of them.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user