CreativeInquiry / PEmbroider

Embroidery Library for Processing
Other
442 stars 28 forks source link

Implement mirrors of StrokeCap methods from Processing #43

Closed golanlevin closed 4 years ago

golanlevin commented 4 years ago

Please implement mirrors of StrokeCap methods from Processing: https://processing.org/reference/strokeCap_.html

strokeCap_

strokeWeight(12.0);
strokeCap(ROUND);
line(20, 30, 80, 30);
strokeCap(SQUARE);
line(20, 50, 80, 50);
strokeCap(PROJECT);
line(20, 70, 80, 70);
golanlevin commented 4 years ago

Human error on my part. These already exist and I've even used them myself.