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

Real64 Impala::Core::Array::ColorMoments::GetMoment ( int  p,
int  q,
int  a,
int  b,
int  c 
) [inline, private]

Definition at line 300 of file ColorMomentsKoen.h.

References mMomentCache.

Referenced by DB(), and SB().

00301     {
00302         for(int i = 0; i < mMomentCache.size(); i++) {
00303             ColorMoment& out = mMomentCache[i];
00304             if ((out.p == p)&&
00305                 (out.q == q)&&
00306                 (out.a == a)&&
00307                 (out.b == b)&&
00308                 (out.c == c))
00309                 return out.value;
00310         }   
00311         return 0;
00312     }


Generated on Thu Jan 13 09:17:18 2011 for ImpalaSrc by  doxygen 1.5.1