CreativeInquiry / PEmbroider

Embroidery Library for Processing
Other
443 stars 28 forks source link

SPIRAL needs options: CLOCKWISE or COUNTERCLOCKWISE #64

Closed golanlevin closed 4 years ago

golanlevin commented 4 years ago

It should be possible to set SPIRAL mode in either orientation.

LingDong- commented 4 years ago

Added: 4b0c091b6514941e24201b09f3d07fd0cd15052c

E.setSpiralDirection(CW);
E.setSpiralDirection(CCW);

// or if the user enjoys typing:
E.setSpiralDirection(CLOCKWISE);
E.setSpiralDirection(COUNTERCLOCKWISE);
golanlevin commented 4 years ago

Thanks :)