fixed Box::Extend(Vec3f&)
[MicroTrace.git] / PhongShader.hxx
index 3a18d6c..b83e670 100644 (file)
@@ -2,7 +2,6 @@
 #define PHONGSHADER_HXX
 
 #include "Shader.hxx"
-#include "Scene.hxx"
 
 class PhongShader : public Shader
 {
@@ -16,11 +15,11 @@ public:
              float ks,
              float ke);
   virtual ~PhongShader();
-
+  
   virtual Vec3f Shade(Ray& ray);
 private:
   PhongShader();
-
+  
   Vec3f m_ambient_color, m_diffuse_color, m_specular_color;
   float m_ka, m_kd, m_ks, m_ke;
 };
This page took 0.021191 seconds and 4 git commands to generate.