コード例 #1
0
ファイル: Scene.cs プロジェクト: modulexcite/aether
 public bool TryIntersect(Ray ray, ref Intersection intersection)
 {
     return _aggregate.TryIntersect(ray, ref intersection);
 }
コード例 #2
0
ファイル: Scene.cs プロジェクト: MassVOiD/aether
 public bool TryIntersect(Ray ray, ref Intersection intersection)
 {
     return(_aggregate.TryIntersect(ray, ref intersection));
 }