diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-09-22 07:48:56 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-09-22 07:48:56 (GMT) |
commit | a5e52ed62b277fcf23ee6ee30ec407ef872b9db2 (patch) | |
tree | 9e3ba23dbf3b2363b8235e9c987efa1ea5f12c3e | |
parent | 8f2653820ec130969d1166ddc6d28ac4ecfc825c (diff) |
Clifford Wolf:
Fixed small bug in non-cgal builds
git-svn-id: http://svn.clifford.at/openscad/trunk@88 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | render.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ CSGTerm *RenderNode::render_csg_term(double m[16], QVector<CSGTerm*> *highlights if (t2 && !t1) { t1 = t2; } else if (t2 && t1) { - t1 = new CSGTerm(CSGTerm::UNION, t1, t2); + t1 = new CSGTerm(CSGTerm::TYPE_UNION, t1, t2); } } if (modinst->tag_highlight && highlights) |