(float weight)
| 832 | |
| 833 | |
| 834 | public void strokeWeight(float weight) { |
| 835 | if (!openShape) { |
| 836 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "strokeWeight()"); |
| 837 | return; |
| 838 | } |
| 839 | |
| 840 | strokeWeight = weight; |
| 841 | } |
| 842 | |
| 843 | public void strokeJoin(int join) { |
| 844 | if (!openShape) { |
no test coverage detected