gvsu/cs658/final/shapes/Sphere.h
josh ad262d3484 updated a bit
git-svn-id: svn://anubis/gvsu@371 45c1a28c-8058-47b2-ae61-ca45b979098e
2009-01-17 22:10:19 +00:00

19 lines
240 B
C++

#ifndef SPHERE_H
#define SPHERE_H SPHERE_H
#include "Shape.h"
class Sphere : public Shape
{
public:
Sphere(double radius);
Solver::Result intersect(const Ray & ray);
private:
double m_radius;
};
#endif