Skip to content

Commit

Permalink
Fix doc (#6371)
Browse files Browse the repository at this point in the history
  • Loading branch information
caminogr authored and arturoc committed Sep 23, 2019
1 parent 88fe84c commit fa81f54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/openFrameworks/graphics/ofGraphics.h
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ void ofSetupScreen();
/// ~~~~{.cpp}
/// void ofApp::draw(){
/// if(ofGetRectMode() == OF_RECTMODE_CORNER){
/// ofDrawRea10,10,80,80);
/// ofDrawRectangle(10,10,80,80);
/// }
/// else {
/// ofDrawRectangle(50,50,80,80);
Expand Down Expand Up @@ -935,7 +935,7 @@ void ofSetRectMode(ofRectMode mode);
/// void ofApp::draw(){
/// ofPushMatrix(); // push the current coordinate position
/// ofRotateX(90); // change the coordinate system
/// ofDrawRea10,10,40,40); // draw a rect
/// ofDrawRectangle(10,10,40,40); // draw a rect
/// ofPopMatrix() // recall the pushed coordinate position
/// ofDrawCircle(10, 10, 5); // draw a circle
/// }
Expand Down

0 comments on commit fa81f54

Please sign in to comment.