#ifndef UNION_H #define UNION_H UNION_H #include "BoolShape.h" #include class Union : public BoolShape { public: Union(const std::vector< refptr > & shapes); IntersectionList intersect(refptr _this, const Ray & ray); refptr clone(); }; #endif