summarylogtreecommitdiffstats
path: root/SDLParametric2.h
blob: 64890163ee71b4ec178d40888ec80de08b548b8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _SDL_PARAMETRIC_2_H_
#define _SDL_PARAMETRIC_2_H_

#include "./destructive_reasoning.h"
#include "./SDLCartesian.h"

class SDL_Parametric2 : public SDL_Cartesian
{
	public:
		SDL_Parametric2(int width,int height,std::vector<std::string> equations);
		
		virtual void render();

	protected:
		std::vector<std::string> equations;	
		std::vector<std::string> rpnequations;	
		double tmin;
		double tmax;
};

#endif