Sets the width of the stroke used for lines, points, and the border around shapes. All widths are set in units of pixels. Using point() with strokeWeight(1) or smaller may draw nothing to the screen, depending on the graphics settings of the computer. Workarounds include setting the pi
(float weight)
| 6451 | * @see PGraphics#strokeCap(int) |
| 6452 | */ |
| 6453 | public void strokeWeight(float weight) { |
| 6454 | strokeWeight = weight; |
| 6455 | } |
| 6456 | |
| 6457 | /** |
| 6458 | * Sets the style of the joints which connect line segments. These joints are |
no outgoing calls
no test coverage detected