示例#1
0
 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));
 }