src/rcrt/bxdf/BXDF.cpp

Go to the documentation of this file.
00001 #include "BXDF.h"
00002 
00003 namespace rcrt
00004 {
00005 
00006 BXDF::BXDF(const RGBColor& s, const RGBColor& d, const RGBColor& t, const BXDFType& bt):
00007         ks(s),kd(d),kt(t),type(bt)
00008 {
00009 }
00010 
00011 BXDF::~BXDF()
00012 {
00013 }
00014 
00015 const RGBColor& BXDF::getKs() const
00016 {
00017         return ks;
00018 }
00019 
00020 const RGBColor& BXDF::getKd() const
00021 {
00022         return kd;
00023 }
00024 
00025 const RGBColor& BXDF::getKt() const
00026 {
00027         return kt;
00028 }
00029 
00030 }

Generated on Thu Jan 31 19:26:19 2008 for RenderingCompetitionRayTracer by  doxygen 1.5.3