コード例 #1
0
ファイル: PBRRay.cs プロジェクト: ccandy/PBRT
 public PBRRay(PBRRay r)
 {
     _origin    = new PBRPoint3(r.Origin);
     _direction = new PBRVector3(r.Direction);
     _tMax      = r.TMax;
     _rTime     = r.RTime;
 }
コード例 #2
0
 public PBRRayDifferential(PBRRay r) : base(r)
 {
     _hasDifferentials = false;
 }
コード例 #3
0
 public abstract bool IntersectP(PBRRay ray, bool testAlphaTexture = true);