예제 #1
0
 public override Bsdf GetBsdf(GeometryPointInfo hitInfo)
 {
     var bsdf = new Bsdf(ref hitInfo.GeoNormal, ref hitInfo.ShadingNormal);
     bsdf.Add(new Lambertian(MaterialData.Kd));
     return bsdf;
 }
예제 #2
0
 public override Bsdf GetBsdf(GeometryPointInfo hitInfo)
 {
     throw new System.NotImplementedException();
 }
예제 #3
0
 public abstract Bsdf GetBsdf( GeometryPointInfo hitInfo );