diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-19 19:30:41 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-19 19:30:41 (GMT) |
commit | 28c3947eccb1220a18e9ce4f367bfabb0907fc4e (patch) | |
tree | 485e9f6609815e3fa850b3537d4ef7686ee2f646 | |
parent | b905e8e537515d80b24e77943e7a6ffcf0e6749d (diff) |
Clifford Wolf:
Added warning for missing OFF export
git-svn-id: http://svn.clifford.at/openscad/trunk@111 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | export.cc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -93,8 +93,9 @@ void export_stl(CGAL_Nef_polyhedron *root_N, QString filename, QProgressDialog * fclose(f); } -void export_off(CGAL_Nef_polyhedron *root_N, QString filename, QProgressDialog *pd) +void export_off(CGAL_Nef_polyhedron*, QString, QProgressDialog*) { + PRINTF("WARNING: OFF import is not implemented yet."); } #endif |