diff options
author | Matt Strapp <matt@mattstrapp.net> | 2021-09-20 18:15:14 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2021-09-20 18:15:14 -0500 |
commit | 342403a02f8063903d0f38327430721d4d0ae331 (patch) | |
tree | 29d020a27bc16939c568dd4b29166566d1c0e658 /dev/MinGfx/example/CircleViewer.h | |
parent | Fix parenthesis (diff) | |
download | csci4611-342403a02f8063903d0f38327430721d4d0ae331.tar csci4611-342403a02f8063903d0f38327430721d4d0ae331.tar.gz csci4611-342403a02f8063903d0f38327430721d4d0ae331.tar.bz2 csci4611-342403a02f8063903d0f38327430721d4d0ae331.tar.lz csci4611-342403a02f8063903d0f38327430721d4d0ae331.tar.xz csci4611-342403a02f8063903d0f38327430721d4d0ae331.tar.zst csci4611-342403a02f8063903d0f38327430721d4d0ae331.zip |
do ass1submission-p1.0
Diffstat (limited to 'dev/MinGfx/example/CircleViewer.h')
-rw-r--r-- | dev/MinGfx/example/CircleViewer.h | 154 |
1 files changed, 77 insertions, 77 deletions
diff --git a/dev/MinGfx/example/CircleViewer.h b/dev/MinGfx/example/CircleViewer.h index 4aefbc8..62bcfb9 100644 --- a/dev/MinGfx/example/CircleViewer.h +++ b/dev/MinGfx/example/CircleViewer.h @@ -1,77 +1,77 @@ - -#include <mingfx.h> - - -/** An application that opens up a window that includes a few buttons - for controlling the simulation and can be used to draw circles and - other computer graphics. - - After constructing a new CircleViewer, call Run() to start and - run the application. Run() will not return until the application - window is closed. Make sure that you call cs3081::InitGraphics() - before creating the RobotViewer app. Example: - - ``` - int main(int argc, char **argv) { - cs3081::InitGraphics(); - cs3081::CircleViewer *app = new cs3081::CircleViewer(); - app->Run(); - cs3081::ShutdownGraphics(); - return 0; - } - ``` - - While the window is open UpdateSimulation() will be called - repeatedly, once per frame. Fill this in to update your simulation - or perform any other processing that should happen over time as the - simulation progresses. - - Fill in the On*() methods as desired to respond to user input events. - - Fill in the Draw*() methods to draw graphics to the screen using - either the nanovg library or raw OpenGL. -*/ -class CircleViewer : public GraphicsApp { -public: - CircleViewer(); - ~CircleViewer(); - - void InitNanoGUI(); - - void UpdateSimulation(double dt); - - - void OnRestartBtnPressed(); - - void OnPauseBtnPressed(); - - - void OnMouseMove(const Point2 &pos, const Vector2 &delta); - - void OnLeftMouseDown(const Point2 &pos); - void OnLeftMouseDrag(const Point2 &pos, const Vector2 &delta); - void OnLeftMouseUp(const Point2 &pos); - - void OnRightMouseDown(const Point2 &pos); - void OnRightMouseDrag(const Point2 &pos, const Vector2 &delta); - void OnRightMouseUp(const Point2 &pos); - - - void OnKeyDown(const char *c, int modifiers); - - void OnKeyUp(const char *c, int modifiers); - - void OnSpecialKeyDown(int key, int scancode, int modifiers); - - void OnSpecialKeyUp(int key, int scancode, int modifiers); - - - void DrawUsingNanoVG(NVGcontext *ctx); - - void DrawUsingOpenGL(); - -private: - double simTime_; - bool paused_; - nanogui::Button *pauseBtn_; -}; +
+#include <mingfx.h>
+
+
+/** An application that opens up a window that includes a few buttons
+ for controlling the simulation and can be used to draw circles and
+ other computer graphics.
+
+ After constructing a new CircleViewer, call Run() to start and
+ run the application. Run() will not return until the application
+ window is closed. Make sure that you call cs3081::InitGraphics()
+ before creating the RobotViewer app. Example:
+
+ ```
+ int main(int argc, char **argv) {
+ cs3081::InitGraphics();
+ cs3081::CircleViewer *app = new cs3081::CircleViewer();
+ app->Run();
+ cs3081::ShutdownGraphics();
+ return 0;
+ }
+ ```
+
+ While the window is open UpdateSimulation() will be called
+ repeatedly, once per frame. Fill this in to update your simulation
+ or perform any other processing that should happen over time as the
+ simulation progresses.
+
+ Fill in the On*() methods as desired to respond to user input events.
+
+ Fill in the Draw*() methods to draw graphics to the screen using
+ either the nanovg library or raw OpenGL.
+*/
+class CircleViewer : public GraphicsApp {
+public:
+ CircleViewer();
+ ~CircleViewer();
+
+ void InitNanoGUI();
+
+ void UpdateSimulation(double dt);
+
+
+ void OnRestartBtnPressed();
+
+ void OnPauseBtnPressed();
+
+
+ void OnMouseMove(const Point2 &pos, const Vector2 &delta);
+
+ void OnLeftMouseDown(const Point2 &pos);
+ void OnLeftMouseDrag(const Point2 &pos, const Vector2 &delta);
+ void OnLeftMouseUp(const Point2 &pos);
+
+ void OnRightMouseDown(const Point2 &pos);
+ void OnRightMouseDrag(const Point2 &pos, const Vector2 &delta);
+ void OnRightMouseUp(const Point2 &pos);
+
+
+ void OnKeyDown(const char *c, int modifiers);
+
+ void OnKeyUp(const char *c, int modifiers);
+
+ void OnSpecialKeyDown(int key, int scancode, int modifiers);
+
+ void OnSpecialKeyUp(int key, int scancode, int modifiers);
+
+
+ void DrawUsingNanoVG(NVGcontext *ctx);
+
+ void DrawUsingOpenGL();
+
+private:
+ double simTime_;
+ bool paused_;
+ nanogui::Button *pauseBtn_;
+};
|