Quantcast
Viewing all articles
Browse latest Browse all 40524

Neat circle strokes

yes something like:

//.h
ofPath circle;

//setup
circle.arc(x,y,radius,0,360);
circle.arc(x,y,radius - lineWidth, 0,360);

//draw
circle.draw();

should give you a nice circle

the first arc, draws a filled circle and the second "cuts a hole" in it to leave a contour of lineWidth width.


Viewing all articles
Browse latest Browse all 40524

Trending Articles