blob: b140db67024469ec613fc3090e39f14a30e8b0c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef EXPORT_H_
#define EXPORT_H_
#include <iostream>
#ifdef ENABLE_CGAL
void export_stl(class CGAL_Nef_polyhedron *root_N, std::ostream &output);
void export_off(CGAL_Nef_polyhedron *root_N, std::ostream &output);
void export_dxf(CGAL_Nef_polyhedron *root_N, std::ostream &output);
void export_png_with_cgal(CGAL_Nef_polyhedron *root_N, std::ostream &output);
void export_png_with_opencsg(CGAL_Nef_polyhedron *root_N, std::ostream &output);
#endif
#ifdef DEBUG
void export_stl(const class PolySet &ps, std::ostream &output);
#endif
#endif
|