Ejemplo n.º 1
0
 public override bool Test(Ray other)
 {
     return sray.Intersects(ref other.sray);
 }
Ejemplo n.º 2
0
 public abstract bool Test(Ray other);
Ejemplo n.º 3
0
 public override bool Test(Ray other)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 public override bool Test(Ray other)
 {
     float o;
     return Collision.RayIntersectsTriangle(ref other.sray, ref P1, ref P2, ref P3, out o);
 }