/*!
* \brief Return created volumes and volumes that can have free facet because of
* skipped small volume. Also create mesh faces on free facets
- * of adjacent not-cut volumes id the result volume is too small.
+ * of adjacent not-cut volumes if the result volume is too small.
*/
void Hexahedron::getBoundaryElems( vector< const SMDS_MeshElement* > & boundaryElems )
{
if ( !faceID )
break;
if ( _grid->IsInternal( faceID ) ||
- _grid->IsShared( faceID ) ||
- _grid->IsBoundaryFace( faceID ))
+ _grid->IsShared( faceID ) /*||
+ _grid->IsBoundaryFace( faceID )*/)
break; // create only if a new face will be used by other 3D algo
}
* internal part of a solid shape and polyhedral volumes near the shape boundary.
*
* Issue 0021336
+ * Issue #16523: Treatment of internal faces
+ * Issue #17237: Body fitting on sub-mesh
*/
class StdMeshers_CartesianParameters3D;