#ifndef SPHERE_H #define SPHERE_H SPHERE_H #include "Shape.h" class Sphere : public Shape { public: Sphere(double radius); IntersectionList intersect(refptr _this, const Ray & ray); protected: double m_radius; double m_radius2; }; #endif