@Charles_Binet wrote:
Hi everyone. When I try to draw some circles in OF, I get this weird texture on rendering. I've been searching for days for the answer but can't quite find it so here I am.
Here is the code for the setup and drawing of the circles followed by a screen capture of the rendering :
// Setup : ofSetLineWidth (5); ofNoFill (); ofSetColor (0, 0, 0); int offset = tileSize / 1.70; ofPoint position = getTilePosition (1, 1) + offset; // Circles : position += offset; ofDrawCircle (position, 42); ofDrawCircle (position, 35); ofDrawCircle (position, 28); ofDrawCircle (position, 21); ofDrawCircle (position, 14); ofDrawCircle (position, 7);
Posts: 1
Participants: 1