diff options
author | donbright <hugh.m.bright@gmail.com> | 2013-03-05 23:47:14 (GMT) |
---|---|---|
committer | donbright <hugh.m.bright@gmail.com> | 2013-03-05 23:47:14 (GMT) |
commit | 42f21c3a0850083d245aa3ac346a53e876f0679e (patch) | |
tree | facf41750e0fe27cc4cdaf352c9c8e687011d103 /src/export.h | |
parent | 422c668dcb538f181683ae51305bf8d3404f48d6 (diff) | |
parent | 4734172c3a16cc06b09e4d2131aa8e380bd0f226 (diff) |
Merge pull request #288 from openscad/issue11_2
Issue11 2
Diffstat (limited to 'src/export.h')
-rw-r--r-- | src/export.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/export.h b/src/export.h index 3897be0..a565561 100644 --- a/src/export.h +++ b/src/export.h @@ -2,12 +2,16 @@ #define EXPORT_H_ #include <iostream> +#include "Tree.h" +#include "Camera.h" #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, Camera &c, std::ostream &output); +void export_png_with_opencsg(Tree &tree, Camera &c, std::ostream &output); #endif |