mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 17:30:35 +05:00
22502: [CEA 1070] "Convert to quadratic" does not work if some edges are not set by some elements during meshing
Fix a case of a node on VERTEX not belonging to EDGE the segment of node is on
This commit is contained in:
parent
457be09338
commit
590f139ee4
@ -1423,8 +1423,15 @@ const SMDS_MeshNode* SMESH_MesherHelper::GetMediumNode(const SMDS_MeshNode* n1,
|
||||
return getMediumNodeOnComposedWire(n1,n2,force3d);
|
||||
}
|
||||
E = TopoDS::Edge(meshDS->IndexToShape( edgeID = pos.first ));
|
||||
u[0] = GetNodeU(E,n1,n2, force3d ? 0 : &uvOK[0]);
|
||||
u[1] = GetNodeU(E,n2,n1, force3d ? 0 : &uvOK[1]);
|
||||
try {
|
||||
u[0] = GetNodeU(E,n1,n2, force3d ? 0 : &uvOK[0]);
|
||||
u[1] = GetNodeU(E,n2,n1, force3d ? 0 : &uvOK[1]);
|
||||
}
|
||||
catch ( Standard_Failure& f )
|
||||
{
|
||||
// issue 22502 / a node is on VERTEX not belonging to E
|
||||
return getMediumNodeOnComposedWire(n1,n2,force3d);
|
||||
}
|
||||
}
|
||||
|
||||
if ( !force3d & uvOK[0] && uvOK[1] )
|
||||
|
Loading…
Reference in New Issue
Block a user