mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-18 06:50:36 +05:00
0021347: [CEA 497] Visualisation into SMESH and VISU of hexagonal prism cells (MED_OCTA12)
0021380: EDF 1937 SMESH: Take into account QUAD9 and HEXA27 + CORBA::Long NbBiQuadQuadrangles() + CORBA::Long NbTriQuadraticHexas() + CORBA::Long NbHexagonalPrisms()
This commit is contained in:
parent
32a63e97ee
commit
209f475f91
@ -2946,6 +2946,12 @@ CORBA::Long SMESH_Mesh_i::NbQuadrangles()throw(SALOME::SALOME_Exception)
|
||||
return _impl->NbQuadrangles();
|
||||
}
|
||||
|
||||
CORBA::Long SMESH_Mesh_i::NbBiQuadQuadrangles()throw(SALOME::SALOME_Exception)
|
||||
{
|
||||
Unexpect aCatch(SALOME_SalomeException);
|
||||
return _impl->NbBiQuadQuadrangles();
|
||||
}
|
||||
|
||||
CORBA::Long SMESH_Mesh_i::NbPolygons()throw(SALOME::SALOME_Exception)
|
||||
{
|
||||
Unexpect aCatch(SALOME_SalomeException);
|
||||
@ -2996,6 +3002,12 @@ CORBA::Long SMESH_Mesh_i::NbHexas()throw(SALOME::SALOME_Exception)
|
||||
return _impl->NbHexas();
|
||||
}
|
||||
|
||||
CORBA::Long SMESH_Mesh_i::NbTriQuadraticHexas()throw(SALOME::SALOME_Exception)
|
||||
{
|
||||
Unexpect aCatch(SALOME_SalomeException);
|
||||
return _impl->NbTriQuadraticHexas();
|
||||
}
|
||||
|
||||
CORBA::Long SMESH_Mesh_i::NbPyramids()throw(SALOME::SALOME_Exception)
|
||||
{
|
||||
Unexpect aCatch(SALOME_SalomeException);
|
||||
@ -3008,6 +3020,12 @@ CORBA::Long SMESH_Mesh_i::NbPrisms()throw(SALOME::SALOME_Exception)
|
||||
return _impl->NbPrisms();
|
||||
}
|
||||
|
||||
CORBA::Long SMESH_Mesh_i::NbHexagonalPrisms()throw(SALOME::SALOME_Exception)
|
||||
{
|
||||
Unexpect aCatch(SALOME_SalomeException);
|
||||
return _impl->NbHexagonalPrisms();
|
||||
}
|
||||
|
||||
CORBA::Long SMESH_Mesh_i::NbPolyhedrons()throw(SALOME::SALOME_Exception)
|
||||
{
|
||||
Unexpect aCatch(SALOME_SalomeException);
|
||||
|
@ -288,6 +288,9 @@ public:
|
||||
CORBA::Long NbQuadranglesOfOrder(SMESH::ElementOrder order)
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
CORBA::Long NbBiQuadQuadrangles()
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
CORBA::Long NbPolygons()
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
@ -309,6 +312,9 @@ public:
|
||||
CORBA::Long NbHexasOfOrder(SMESH::ElementOrder order)
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
CORBA::Long NbTriQuadraticHexas()
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
CORBA::Long NbPyramids()
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
@ -321,6 +327,9 @@ public:
|
||||
CORBA::Long NbPrismsOfOrder(SMESH::ElementOrder order)
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
CORBA::Long NbHexagonalPrisms()
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
CORBA::Long NbPolyhedrons()
|
||||
throw (SALOME::SALOME_Exception);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user