openscad/src/CGALRenderer.h

20 lines
351 B
C++

#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