code from assignment 1
[MicroTrace.git] / Primitive.hxx
1 #ifndef PRIMITIVE_HXX
2 #define PRIMITIVE_HXX
3
4 #include "Ray.hxx"
5
6 class Primitive
7 {
8 public:
9 virtual bool Intersect(Ray &ray) = 0;
10 };
11
12 #endif
This page took 0.053619 seconds and 5 git commands to generate.