Home || Visual Search || Applications || Architecture || 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 Thu Jan 13 09:19:38 2011 for ImpalaSrc by  doxygen 1.5.1