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