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