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.