mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-18 13:00:32 +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 fix AddPolygonalFace()
This commit is contained in:
parent
032bca98c2
commit
fd5de6779a
@ -1359,7 +1359,7 @@ SMDS_MeshFace* SMESH_MesherHelper::AddPolygonalFace (const vector<const SMDS_Mes
|
||||
for ( int i = 0; i < nodes.size(); ++i )
|
||||
{
|
||||
const SMDS_MeshNode* n1 = nodes[i];
|
||||
const SMDS_MeshNode* n2 = nodes[(i+1)/nodes.size()];
|
||||
const SMDS_MeshNode* n2 = nodes[(i+1)%nodes.size()];
|
||||
const SMDS_MeshNode* n12 = GetMediumNode(n1,n2,force3d);
|
||||
newNodes.push_back( n1 );
|
||||
newNodes.push_back( n12 );
|
||||
|
Loading…
Reference in New Issue
Block a user