(int cap)
| 815 | } |
| 816 | |
| 817 | public void strokeCap(int cap) { |
| 818 | if (!openShape) { |
| 819 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "strokeCap()"); |
| 820 | return; |
| 821 | } |
| 822 | |
| 823 | strokeCap = cap; |
| 824 | } |
| 825 | |
| 826 | |
| 827 | ////////////////////////////////////////////////////////////// |