(float weight)
| 797 | |
| 798 | |
| 799 | public void strokeWeight(float weight) { |
| 800 | if (!openShape) { |
| 801 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "strokeWeight()"); |
| 802 | return; |
| 803 | } |
| 804 | |
| 805 | strokeWeight = weight; |
| 806 | } |
| 807 | |
| 808 | public void strokeJoin(int join) { |
| 809 | if (!openShape) { |
no test coverage detected