blob: 9750c300847c8ed9a6d1822c516847fc51670039 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EXPORT_H_
#define EXPORT_H_
#ifdef ENABLE_CGAL
#include <iostream>
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);
#endif
#endif
|