mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
PAL6938
This commit is contained in:
parent
4a31c0f62c
commit
3da89ab053
@ -44,7 +44,8 @@ enum SMESHGUI_FilterType
|
|||||||
SMESHGUI_VolumeFilter = 3,
|
SMESHGUI_VolumeFilter = 3,
|
||||||
SMESHGUI_AllElementsFilter = 4,
|
SMESHGUI_AllElementsFilter = 4,
|
||||||
SMESHGUI_QuadFilter = 5,
|
SMESHGUI_QuadFilter = 5,
|
||||||
SMESHGUI_TriaFilter = 6
|
SMESHGUI_TriaFilter = 6,
|
||||||
|
SMESHGUI_LastFilter
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -469,6 +469,11 @@ namespace SMESH{
|
|||||||
theStyle->RemoveFilter(theId);
|
theStyle->RemoveFilter(theId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RemoveFilters(VTKViewer_InteractorStyleSALOME* theStyle){
|
||||||
|
for ( int id = SMESHGUI_NodeFilter; theStyle && id < SMESHGUI_LastFilter; id++ )
|
||||||
|
theStyle->RemoveFilter( id );
|
||||||
|
}
|
||||||
|
|
||||||
bool IsValid(SALOME_Actor* theActor, int theCellId,
|
bool IsValid(SALOME_Actor* theActor, int theCellId,
|
||||||
VTKViewer_InteractorStyleSALOME* theStyle)
|
VTKViewer_InteractorStyleSALOME* theStyle)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user