#ifndef CSGTERM_H_ #define CSGTERM_H_ #include #include #include "memory.h" #include "linalg.h" class PolySet; class CSGTerm { public: enum type_e { TYPE_PRIMITIVE, TYPE_UNION, TYPE_INTERSECTION, TYPE_DIFFERENCE }; static shared_ptr createCSGTerm(type_e type, shared_ptr left, shared_ptr right); static shared_ptr createCSGTerm(type_e type, CSGTerm *left, CSGTerm *right); type_e type; shared_ptr polyset; std::string label; shared_ptr left; shared_ptr right; BoundingBox bbox; CSGTerm(const shared_ptr &polyset, const Transform3d &matrix, const Color4f &color, const std::string &label); ~CSGTerm(); const BoundingBox &getBoundingBox() const { return this->bbox; } std::string dump(); private: CSGTerm(type_e type, shared_ptr left, shared_ptr right); CSGTerm(type_e type, CSGTerm *left, CSGTerm *right); void initBoundingBox(); Transform3d m; Color4f color; friend class CSGChain; }; class CSGChain { public: std::vector > polysets; std::vector matrices; std::vector colors; std::vector types; std::vector labels; CSGChain(); void add(const shared_ptr &polyset, const Transform3d &m, const Color4f &color, CSGTerm::type_e type, std::string label); void import(shared_ptr term, CSGTerm::type_e type = CSGTerm::TYPE_UNION); std::string dump(bool full = false); BoundingBox getBoundingBox() const; }; #endif