Salome HOME
Bug: unable to create LocalLength hyp for a sub-mesh on a shape with a degenerated...
authoreap <eap@opencascade.com>
Wed, 3 Dec 2014 14:28:30 +0000 (17:28 +0300)
committereap <eap@opencascade.com>
Wed, 3 Dec 2014 14:28:30 +0000 (17:28 +0300)
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;