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