code for assignment 2
[MicroTrace.git] / EyeLightShader.cxx
1 #include "EyeLightShader.hxx"
2
3 EyeLightShader::EyeLightShader(Scene* scene,
4 const Vec3f& color)
5 : Shader(scene),
6 m_color(color)
7 {
8 }
9
10 EyeLightShader::~EyeLightShader()
11 {
12 }
13
14 EyeLightShader::EyeLightShader()
15 : Shader(0),
16 m_color(Vec3f())
17 {
18 }
19
20 Vec3f
21 EyeLightShader::Shade(Ray& ray)
22 {
23 return Vec3f();
24 }
This page took 0.050825 seconds and 5 git commands to generate.