PAL10515. Check shape type before calling TopoDS::Face()

This commit is contained in:
eap 2005-11-16 15:00:03 +00:00
parent 9dbbb779fa
commit a5e3cc49d7

View File

@ -131,8 +131,8 @@ CORBA::Boolean SMESH_Pattern_i::LoadFromFace(SMESH::SMESH_Mesh_ptr theMesh,
if ( !aMesh )
return false;
TopoDS_Face aFace = TopoDS::Face( myGen->GeomObjectToShape( theFace ));
if ( aFace.IsNull() )
TopoDS_Shape aFace = myGen->GeomObjectToShape( theFace );
if ( aFace.IsNull() || aFace.ShapeType() != TopAbs_FACE )
return false;
// Update Python script
@ -143,7 +143,7 @@ CORBA::Boolean SMESH_Pattern_i::LoadFromFace(SMESH::SMESH_Mesh_ptr theMesh,
SMESH_Gen_i::AddToCurrentPyScript( str );
addErrorCode( "LoadFromFace" );
return myPattern.Load( aMesh, aFace, theProject );
return myPattern.Load( aMesh, TopoDS::Face( aFace ), theProject );
}
//=======================================================================