Definition at line 155 of file ViewerPointCloud.h. References OglGui::OglWindow::mOglWnd. Referenced by OglGui::ConceptSupportControl::CommandButtonSelection(). 00156 { 00157 LIST *obj, *objList = mOglWnd->objectList; 00158 ForAllElements(obj, objList) 00159 { 00160 OGLVIEW* view = (OGLVIEW*) obj->info; 00161 bool hasTags = (view->tags & tags) == tags; 00162 00163 if ((isSet && hasTags) || (!isSet && !hasTags)) 00164 view->borderCol = col; 00165 } 00166 }
|