Salome HOME
Bug: unable to create LocalLength hyp for a sub-mesh on a shape with a degenerated...
[modules/smesh.git] / src / StdMeshers / StdMeshers_LocalLength.cxx
index 6546c4492327b14b87930083fab74ba612eed91a..a5712bdb07e3a67563999ed0b7c3d470effdadb3 100644 (file)
@@ -216,6 +216,8 @@ bool StdMeshers_LocalLength::SetParametersByMesh(const SMESH_Mesh*   theMesh,
   {
     const TopoDS_Edge& edge = TopoDS::Edge( edgeMap( iE ));
     Handle(Geom_Curve) C = BRep_Tool::Curve( edge, L, UMin, UMax );
+    if ( C.IsNull() )
+      continue;
     GeomAdaptor_Curve AdaptCurve(C, UMin, UMax);
 
     vector< double > params;