Skip to content

Commit

Permalink
Update ofApp.h
Browse files Browse the repository at this point in the history
  • Loading branch information
hunar4321 authored Aug 27, 2022
1 parent 7741a21 commit 2964b40
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions particle_life/src/ofApp.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ struct Point {
}

void Draw() {
ofSetColor(r, g, b); // Set the drawing color to white
ofDrawCircle((int)x, (int)y, 3); // Centered at (250, 100), radius of 50
ofSetColor(r, g, b); // rgb color
ofDrawCircle((int)x, (int)y, 3); // x, y position and size of the point
}
};



class ofApp : public ofBaseApp{

public:
Expand Down

0 comments on commit 2964b40

Please sign in to comment.