12578d7d7a4743b033a60b4666fe0dc822d323e7
[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.049801 seconds and 3 git commands to generate.