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 }
|