示例#1
0
 public bool Intersects(Recti other)
 {
     return(!(other.Left > Right || other.Right < Left || other.Top > Bottom || other.Bottom < Top));
 }
示例#2
0
 static Recti()
 {
     empty = new Recti(0, 0, 0, 0);
 }