blob: 9c19e5aee35b36ecdd762c2fae3ce560ed3ee532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef CGALRENDERER_H_
#define CGALRENDERER_H_
#include "renderer.h"
class CGALRenderer : public Renderer
{
public:
CGALRenderer(const class CGAL_Nef_polyhedron &root);
~CGALRenderer();
void draw(bool showfaces, bool showedges) const;
public:
const CGAL_Nef_polyhedron &root;
class Polyhedron *polyhedron;
class PolySet *polyset;
};
#endif
|