Ejemplo n.º 1
0
 public SV_Matte(SV_Matte other)
 {
     ambient = (SV_Lambertian)other.ambient.Clone();
     diffuse = (SV_Lambertian)other.diffuse.Clone();
 }
Ejemplo n.º 2
0
 public SV_Matte(SV_Lambertian ambient,
                 SV_Lambertian diffuse)
 {
     this.ambient = ambient;
     this.diffuse = diffuse;
 }
Ejemplo n.º 3
0
 public SV_Matte(ITexture cd, float ka, float kd)
 {
     ambient = new SV_Lambertian(ka, cd);
     diffuse = new SV_Lambertian(kd, cd);
 }
 public SV_Matte() : base()
 {
     ambient_brdf = new SV_Lambertian();
     diffuse_brdf = new SV_Lambertian();
 }