mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
0021338: EDF 1926 SMESH: New controls and filters
This commit is contained in:
parent
601f8a87b5
commit
8931be9b66
@ -883,6 +883,14 @@
|
||||
type = QObject::tr( "OVER_CONSTRAINED_VOLUME" );
|
||||
else if ( dynamic_cast< SMESH::Controls::OverConstrainedFace* >( f.get() ) )
|
||||
type = QObject::tr( "OVER_CONSTRAINED_FACE" );
|
||||
else if ( dynamic_cast< SMESH::Controls::CoincidentNodes* >( f.get() ) )
|
||||
type = QObject::tr( "EQUAL_NODE" );
|
||||
else if ( dynamic_cast< SMESH::Controls::CoincidentElements1D* >( f.get() ) )
|
||||
type = QObject::tr( "EQUAL_EDGE" );
|
||||
else if ( dynamic_cast< SMESH::Controls::CoincidentElements2D* >( f.get() ) )
|
||||
type = QObject::tr( "EQUAL_FACE" );
|
||||
else if ( dynamic_cast< SMESH::Controls::CoincidentElements3D* >( f.get() ) )
|
||||
type = QObject::tr( "EQUAL_VOLUME" );
|
||||
return type;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user