/* * OpenSCAD (www.openscad.org) * Copyright (C) 2009-2011 Clifford Wolf and * Marius Kintel * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * As a special exception, you have permission to link this program * with the CGAL library and distribute executables, as long as you * follow the requirements of the GNU GPL in regard to all of the * software in the executable aside from CGAL. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include "csgterm.h" #include "polyset.h" #include "linalg.h" #include /*! \class CSGTerm A CSGTerm is either a "primitive" or a CSG operation with two children terms. A primitive in this context is any PolySet, which may or may not have a subtree which is already evaluated (e.g. using the render() module). */ /*! \class CSGChain A CSGChain is just a vector of primitives, each having a CSG type associated with it. It's created by importing a CSGTerm tree. */ shared_ptr CSGTerm::createCSGTerm(type_e type, shared_ptr left, shared_ptr right) { if (type != TYPE_PRIMITIVE) { // In case we're creating a CSG terms from a pruned tree, left/right can be NULL if (!right) { if (type == TYPE_UNION || type == TYPE_DIFFERENCE) return left; else return right; } if (!left) { if (type == TYPE_UNION) return right; else return left; } } // Pruning the tree. For details, see: // http://www.cc.gatech.edu/~turk/my_papers/pxpl_csg.pdf const BoundingBox &leftbox = left->getBoundingBox(); const BoundingBox &rightbox = right->getBoundingBox(); if (type == TYPE_INTERSECTION) { BoundingBox newbox(leftbox.min().cwise().max(rightbox.min()), leftbox.max().cwise().min(rightbox.max())); if (newbox.isNull()) { return shared_ptr(); // Prune entire product } } else if (type == TYPE_DIFFERENCE) { BoundingBox newbox(leftbox.min().cwise().max(rightbox.min()), leftbox.max().cwise().min(rightbox.max())); if (newbox.isNull()) { return left; // Prune the negative component } } return shared_ptr(new CSGTerm(type, left, right)); } shared_ptr CSGTerm::createCSGTerm(type_e type, CSGTerm *left, CSGTerm *right) { return createCSGTerm(type, shared_ptr(left), shared_ptr(right)); } CSGTerm::CSGTerm(const shared_ptr &polyset, const Transform3d &matrix, const Color4f &color, const std::string &label) : type(TYPE_PRIMITIVE), polyset(polyset), label(label), m(matrix), color(color) { initBoundingBox(); } CSGTerm::CSGTerm(type_e type, shared_ptr left, shared_ptr right) : type(type), left(left), right(right), m(Transform3d::Identity()) { initBoundingBox(); } CSGTerm::CSGTerm(type_e type, CSGTerm *left, CSGTerm *right) : type(type), left(left), right(right), m(Transform3d::Identity()) { initBoundingBox(); } CSGTerm::~CSGTerm() { } void CSGTerm::initBoundingBox() { if (this->type == TYPE_PRIMITIVE) { this->bbox = this->m * this->polyset->getBoundingBox(); } else { const BoundingBox &leftbox = this->left->getBoundingBox(); const BoundingBox &rightbox = this->right->getBoundingBox(); switch (this->type) { case TYPE_UNION: this->bbox = this->m * BoundingBox(leftbox.min().cwise().min(rightbox.min()), leftbox.max().cwise().max(rightbox.max())); break; case TYPE_INTERSECTION: this->bbox = this->m * BoundingBox(leftbox.min().cwise().max(rightbox.min()), leftbox.max().cwise().min(rightbox.max())); break; case TYPE_DIFFERENCE: this->bbox = this->m * leftbox; break; case TYPE_PRIMITIVE: break; default: assert(false); } } } std::string CSGTerm::dump() { std::stringstream dump; if (type == TYPE_UNION) dump << "(" << left->dump() << " + " << right->dump() << ")"; else if (type == TYPE_INTERSECTION) dump << "(" << left->dump() << " * " << right->dump() << ")"; else if (type == TYPE_DIFFERENCE) dump << "(" << left->dump() << " - " << right->dump() << ")"; else dump << this->label; return dump.str(); } CSGChain::CSGChain() { } void CSGChain::add(const shared_ptr &polyset, const Transform3d &m, const Color4f &color, CSGTerm::type_e type, std::string label) { polysets.push_back(polyset); matrices.push_back(m); colors.push_back(color); types.push_back(type); labels.push_back(label); } void CSGChain::import(shared_ptr term, CSGTerm::type_e type) { if (term->type == CSGTerm::TYPE_PRIMITIVE) { add(term->polyset, term->m, term->color, type, term->label); } else { import(term->left, type); import(term->right, term->type); } } std::string CSGChain::dump(bool full) { std::stringstream dump; for (size_t i = 0; i < types.size(); i++) { if (types[i] == CSGTerm::TYPE_UNION) { if (i != 0) dump << "\n"; dump << "+"; } else if (types[i] == CSGTerm::TYPE_DIFFERENCE) dump << " -"; else if (types[i] == CSGTerm::TYPE_INTERSECTION) dump << " *"; dump << labels[i]; if (full) { dump << " polyset: \n" << polysets[i]->dump() << "\n"; dump << " matrix: \n" << matrices[i].matrix() << "\n"; dump << " color: \n" << colors[i] << "\n"; } } dump << "\n"; return dump.str(); } BoundingBox CSGChain::getBoundingBox() const { BoundingBox bbox; for (size_t i=0;igetBoundingBox(); if (!psbox.isNull()) { bbox.extend(matrices[i] * psbox); } } } return bbox; }