Disables drawing the stroke (outline). If both noStroke() and noFill() are called, nothing will be drawn to the screen. @webref color:setting @webBrief Disables drawing the stroke (outline) @see PGraphics#stroke(int, float) @see PGraphics#fill(float, float, float, float) @see PGraphic
()
| 6508 | * @see PGraphics#noFill() |
| 6509 | */ |
| 6510 | public void noStroke() { |
| 6511 | stroke = false; |
| 6512 | } |
| 6513 | |
| 6514 | |
| 6515 | /** |
no outgoing calls
no test coverage detected