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