コード例 #1
0
 public LightRay(Point3D from, Vector direction, Spectrum illuminance)
     : base(from, direction)
 {
     this.Illuminance = illuminance;
 }
コード例 #2
0
 public LightRay(Point3D from, Point3D to, Spectrum illuminance)
     : base(from, to)
 {
     this.Illuminance = illuminance;
 }
コード例 #3
0
 public LightRay(Point3D from, Vector direction)
     : base(from, direction)
 {
     this.Illuminance = new Spectrum();
 }
コード例 #4
0
 public LightRay(Point3D from, Point3D to)
     : base(from, to)
 {
     this.Illuminance = new Spectrum();
 }