summaryrefslogtreecommitdiff
path: root/src/GudhUI/view/Projector3D.h
blob: 503b35c50ea7a0d775bb2e2034b6ec58b3cb3e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Projector.h
 *
 *  Created on: Aug 27, 2014
 *      Author: dsalinas
 */

#ifndef PROJECTOR3D_H_
#define PROJECTOR3D_H_

#include "model/Complex_typedefs.h"


class Projector3D{
public:
	typedef Geometry_trait::Point Point;
	typedef Geometry_trait::Point_3 Point_3;

	virtual Point_3 operator()(const Point&) const  = 0;

	virtual ~Projector3D(){
	}

};



#endif /* PROJECTOR3D_H_ */