(int cap)
| 850 | } |
| 851 | |
| 852 | public void strokeCap(int cap) { |
| 853 | if (!openShape) { |
| 854 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "strokeCap()"); |
| 855 | return; |
| 856 | } |
| 857 | |
| 858 | strokeCap = cap; |
| 859 | } |
| 860 | |
| 861 | |
| 862 | ////////////////////////////////////////////////////////////// |