summaryrefslogtreecommitdiff
path: root/src/GudhUI/view/Projector3D.h
blob: 574756fdb2b4b0ee972eb673ec31c1e5945184ff (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
/*    This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
 *    See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
 *    Author(s):       David Salinas
 *
 *    Copyright (C) 2014 Inria
 *
 *    Modification(s):
 *      - YYYY/MM Author: Description of the modification
 */

#ifndef VIEW_PROJECTOR3D_H_
#define VIEW_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  // VIEW_PROJECTOR3D_H_