public override bool Intersects(OrientedBoxShape other)
 {
     return(MyBox.Intersects(ref other.MyBox));
 }
 public virtual bool Intersects(OrientedBoxShape other)
 {
     return(false);
 }
Exemple #3
0
 public override bool Intersects(OrientedBoxShape other)
 {
     return(other.MyBox.Contains(ref Point));
 }