summarylogtreecommitdiffstats
path: root/SDLPolar.h
blob: 3481c7fe034f26ac9a2efca50126b5e6c54d37c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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