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

static LIST* OglGui::ViewerPointCloud::FindViewNodeOnOfTagged ( OGLWND *  oglWnd,
int  x,
int  y,
int  onTags,
int  offTags 
) [inline, static]

Definition at line 131 of file ViewerPointCloud.h.

Referenced by FindViewOnOfTagged().

00133     {
00134         LIST         *obj;
00135         OGLVIEW      *view;
00136 
00137         ForAllElementsBackward(obj, oglWnd->lastObject)
00138         {
00139             view = (OGLVIEW *) obj->info;
00140             if (((view->tags & onTags)==onTags) && !(view->tags&offTags))
00141                 if( viewSys.PointInView( view, x, y ) )
00142                     return obj;
00143         }
00144         return NULL;
00145     }


Generated on Fri Mar 19 12:09:59 2010 for ImpalaSrc by  doxygen 1.5.1