diff options
-rw-r--r-- | mainwin.cc | 2 | ||||
-rw-r--r-- | render.cc | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -910,7 +910,7 @@ void MainWindow::actionExportSTLorOFF(bool) } if (!root_N->is_simple()) { - PRINT("Object isn't a single polyhedron or otherwise invalid! Modify your design.."); + PRINT("Object isn't a valid 2-manifold! Modify your design.."); current_win = NULL; return; } @@ -152,7 +152,7 @@ CSGTerm *RenderNode::render_csg_term(double m[16], QVector<CSGTerm*> *highlights } if (!N.is_simple()) { - PRINTF("WARNING: Result of render() isn't a single polyhedron or otherwise invalid! Modify your design.."); + PRINTF("WARNING: Result of render() isn't valid 2-manifold! Modify your design.."); return NULL; } |