Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

bool Impala::Core::Geometry::Rectangle::Intersects ( const Rectangle r  )  const [inline]

Definition at line 98 of file Rectangle.h.

References mBottom, mLeft, mRight, and mTop.

00099     {
00100 
00101         //std::cout << "r: " << r << std::endl;
00102         return ! (r.mLeft > mRight ||
00103                   r.mRight < mLeft ||
00104                   r.mTop > mBottom ||
00105                   r.mBottom < mTop );
00106     }


Generated on Fri Mar 19 11:11:47 2010 for ImpalaSrc by  doxygen 1.5.1