core/vcsl/vcsl_lambertian.cxx
Go to the documentation of this file.
00001 // This is core/vcsl/vcsl_lambertian.cxx
00002 #include "vcsl_lambertian.h"
00003 #include <vcsl/vcsl_axis.h>
00004 
00005 //---------------------------------------------------------------------------
00006 // Default constructor
00007 //---------------------------------------------------------------------------
00008 vcsl_lambertian::vcsl_lambertian()
00009 {
00010   vcsl_axis_sptr a=new vcsl_axis;
00011   axes_.push_back(a);
00012   a=new vcsl_axis(*a);
00013   axes_.push_back(a);
00014   a=new vcsl_axis(*a);
00015   axes_.push_back(a);
00016 }