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

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

Definition at line 37 of file ColorMoments.h.

References a, b, c, first, next, p, q, and value.

Referenced by Impala::Core::Array::DB(), and Impala::Core::Array::SB().

00038     {
00039         ColorMoment* out=first;
00040         while(out!=NULL){
00041             if ((out->p == p)&&
00042                 (out->q == q)&&
00043                 (out->a == a)&&
00044                 (out->b == b)&&
00045                 (out->c == c))
00046                 break;
00047             else
00048                 out=out->next;
00049         }   
00050         if(out!=NULL)
00051             return out->value;
00052         else
00053             return 0;
00054     }


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