From 2964b409b84df793645d88a696607778be0adb5d Mon Sep 17 00:00:00 2001 From: Hunar Ahmad <39065447+hunar4321@users.noreply.github.com> Date: Sat, 27 Aug 2022 16:01:33 +0300 Subject: [PATCH] Update ofApp.h --- particle_life/src/ofApp.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/particle_life/src/ofApp.h b/particle_life/src/ofApp.h index 28c188c..70afc71 100644 --- a/particle_life/src/ofApp.h +++ b/particle_life/src/ofApp.h @@ -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: