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