Esempio n. 1
0
 public LightRay(Point3D from, Vector direction, Spectrum illuminance)
     : base(from, direction)
 {
     this.Illuminance = illuminance;
 }
Esempio n. 2
0
 public LightRay(Point3D from, Point3D to, Spectrum illuminance)
     : base(from, to)
 {
     this.Illuminance = illuminance;
 }
Esempio n. 3
0
 public LightRay(Point3D from, Vector direction)
     : base(from, direction)
 {
     this.Illuminance = new Spectrum();
 }
Esempio n. 4
0
 public LightRay(Point3D from, Point3D to)
     : base(from, to)
 {
     this.Illuminance = new Spectrum();
 }