diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-27 06:40:07 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-27 06:40:07 (GMT) |
commit | 75e51ea1b2f6de1b3c0520dc5ce23b0f40aca970 (patch) | |
tree | 776fc0f1a8538811504ad5f77d8713191ccce14d | |
parent | aebe4a622ab15b869a5b89822bbb59af2493b44f (diff) |
Clifford Wolf:
Fixed stupid CsgNode::render_cgal_nef_polyhedron() bug
git-svn-id: http://svn.clifford.at/openscad/trunk@31 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | csgops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ AbstractNode *CsgModule::evaluate(const Context*, const QVector<QString>&, const CGAL_Nef_polyhedron CsgNode::render_cgal_nef_polyhedron() const { - bool first; + bool first = true; CGAL_Nef_polyhedron N; foreach (AbstractNode *v, children) { if (first) { |