예제 #1
0
 public bool Intersects(Rectf other)
 {
     return(!(other.Left > Right || other.Right < Left || other.Top > Bottom || other.Bottom < Top));
 }
예제 #2
0
 static Rectf()
 {
     empty = new Rectf(0.0f, 0.0f, 0.0f, 0.0f);
 }