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