summarylogtreecommitdiffstats
path: root/SDLPolar.h
diff options
context:
space:
mode:
Diffstat (limited to 'SDLPolar.h')
-rw-r--r--SDLPolar.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/SDLPolar.h b/SDLPolar.h
new file mode 100644
index 000000000000..3481c7fe034f
--- /dev/null
+++ b/SDLPolar.h
@@ -0,0 +1,17 @@
+#ifndef _SDL_POLAR_H_
+#define _SDL_POLAR_H_
+
+#include "./destructive_reasoning.h"
+#include "./Math.h"
+#include "./SDLCartesian.h"
+
+class SDL_Polar : public SDL_Cartesian
+{
+ public:
+ SDL_Polar(int width, int height, std::string infix) : SDL_Cartesian(width,height,infix) {};
+ SDL_Polar(int width, int height, std::vector<std::string> functions) : SDL_Cartesian(width,height,functions) {};
+
+ virtual void render();
+};
+
+#endif