#ifndef UNION_H #define UNION_H UNION_H #include "BoolShape.h" class Union : public BoolShape { public: Union(refptr shape1, refptr shape2); IntersectionList intersect(refptr _this, const Ray & ray); }; #endif