Skip to content

Instantly share code, notes, and snippets.

@arturoc
Created July 16, 2013 13:51
Show Gist options
  • Save arturoc/6008884 to your computer and use it in GitHub Desktop.
Save arturoc/6008884 to your computer and use it in GitHub Desktop.
// .h
ofPath path;
// setup
path.rectangle(0,0,ofGetWidth(),ofGetHeight());
path.circle(ofGetWidth()*.5,ofGetHeight()*.5,100);
path.setFilled(true);
path.setFillColor(color);
//draw
video.draw(0,0)
path.draw();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment