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

bool Impala::Core::Geometry::Rectangle::IsInside ( int  x,
int  y 
) const [inline]

Definition at line 87 of file Rectangle.h.

References mBottom, mLeft, mRight, and mTop.

00088     {
00089         if(x < mRight &&
00090            x > mLeft &&
00091            y > mTop &&
00092            y < mBottom)
00093            return true;
00094         return false;
00095     }


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