1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0022726: Exception on restoring shape

This commit is contained in:
KGV 2011-11-18 14:33:55 +00:00 committed by bugmaster
parent eb901da610
commit ffe74e4685

View File

@ -89,82 +89,99 @@ DBRep_IsoBuilder::DBRep_IsoBuilder (const TopoDS_Face& TopologicalFace,
// Retreiving the edges and loading them into the hatcher. // Retreiving the edges and loading them into the hatcher.
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
TopExp_Explorer ExpEdges ; TopExp_Explorer ExpEdges;
for (ExpEdges.Init (TopologicalFace, TopAbs_EDGE) ; ExpEdges.More() ; ExpEdges.Next()) { for (ExpEdges.Init (TopologicalFace, TopAbs_EDGE); ExpEdges.More(); ExpEdges.Next())
const TopoDS_Edge& TopologicalEdge = TopoDS::Edge (ExpEdges.Current()) ; {
Standard_Real U1, U2 ; const TopoDS_Edge& TopologicalEdge = TopoDS::Edge (ExpEdges.Current());
const Handle(Geom2d_Curve) PCurve = BRep_Tool::CurveOnSurface (TopologicalEdge, TopologicalFace, U1, U2) ; Standard_Real U1, U2;
const Handle(Geom2d_Curve) PCurve = BRep_Tool::CurveOnSurface (TopologicalEdge, TopologicalFace, U1, U2);
if ( PCurve.IsNull() ) { if (PCurve.IsNull())
#ifdef DEB {
cout<<"DBRep_IsoBuilder : PCurve nulle"<<endl; #ifdef DEB
#endif cout << "DBRep_IsoBuilder : PCurve is null\n";
#endif
return; return;
} }
else if (U1 == U2)
if ( U1==U2) { {
#ifdef DEB #ifdef DEB
cout<<"DBRep_IsoBuilder PCurve : U1==U2"<<endl; cout << "DBRep_IsoBuilder PCurve : U1==U2\n";
#endif #endif
return; return;
} }
//-- Test if a TrimmedCurve is necessary //-- Test if a TrimmedCurve is necessary
if( Abs(PCurve->FirstParameter()-U1)<= Precision::PConfusion() if (Abs(PCurve->FirstParameter()-U1)<= Precision::PConfusion()
&& Abs(PCurve->LastParameter()-U2)<= Precision::PConfusion()) { && Abs(PCurve->LastParameter()-U2)<= Precision::PConfusion())
#ifdef DEB {
Standard_Integer IndE = AddElement (PCurve, TopologicalEdge.Orientation());
#endif
AddElement (PCurve, TopologicalEdge.Orientation()) ;
} }
else { else
if (!PCurve->IsPeriodic()) { {
Handle (Geom2d_TrimmedCurve) TrimPCurve =Handle(Geom2d_TrimmedCurve)::DownCast(PCurve); if (!PCurve->IsPeriodic())
if (!TrimPCurve.IsNull()) { {
if (TrimPCurve->BasisCurve()->FirstParameter()-U1 > Precision::PConfusion() || Handle (Geom2d_TrimmedCurve) TrimPCurve = Handle(Geom2d_TrimmedCurve)::DownCast (PCurve);
U2-TrimPCurve->BasisCurve()->LastParameter() > Precision::PConfusion()) { if (!TrimPCurve.IsNull())
#ifdef DEB {
Standard_Integer IndE = if (TrimPCurve->BasisCurve()->FirstParameter() - U1 > Precision::PConfusion() ||
#endif TrimPCurve->BasisCurve()->FirstParameter() - U2 > Precision::PConfusion() ||
AddElement (PCurve, TopologicalEdge.Orientation()) ; U1 - TrimPCurve->BasisCurve()->LastParameter() > Precision::PConfusion() ||
#ifdef DEB U2 - TrimPCurve->BasisCurve()->LastParameter() > Precision::PConfusion())
cout<<"DBRep_IsoBuilder TrimPCurve : parameters out of range "<<endl; {
cout<<" U1("<<U1<<"), Umin("<<PCurve->FirstParameter() AddElement (PCurve, TopologicalEdge.Orientation());
<<"), U2("<<U2<<"), Umax("<<PCurve->LastParameter()<<")"<<endl; #ifdef DEB
#endif cout << "DBRep_IsoBuilder TrimPCurve : parameters out of range\n";
return; cout << " U1(" << U1 << "), Umin(" << PCurve->FirstParameter()
} << "), U2(" << U2 << "), Umax(" << PCurve->LastParameter() << ")\n";
} #endif
else { return;
if (PCurve->FirstParameter()-U1 > Precision::PConfusion()){ }
#ifdef DEB }
cout<<"DBRep_IsoBuilder PCurve : U1 parameters out of range "<<endl; else
cout<<" U1("<<U1<<"), Umin("<<PCurve->FirstParameter()<<")"<<endl; {
#endif if (PCurve->FirstParameter() - U1 > Precision::PConfusion())
U1=PCurve->FirstParameter(); {
} #ifdef DEB
if (U2-PCurve->LastParameter() > Precision::PConfusion()){ cout << "DBRep_IsoBuilder PCurve : parameters out of range\n";
#ifdef DEB cout << " U1(" << U1 << "), Umin(" << PCurve->FirstParameter() << ")\n";
cout<<"DBRep_IsoBuilder PCurve : U2 parameters out of range "<<endl; #endif
cout<<" U2("<<U2<<"), Umax("<<PCurve->LastParameter()<<")"<<endl; U1 = PCurve->FirstParameter();
#endif }
U2=PCurve->LastParameter(); if (PCurve->FirstParameter() - U2 > Precision::PConfusion())
} {
} #ifdef DEB
cout << "DBRep_IsoBuilder PCurve : parameters out of range\n";
cout << " U2(" << U2 << "), Umin(" << PCurve->FirstParameter() << ")\n";
#endif
U2 = PCurve->FirstParameter();
}
if (U1 - PCurve->LastParameter() > Precision::PConfusion())
{
#ifdef DEB
cout << "DBRep_IsoBuilder PCurve : parameters out of range\n";
cout << " U1(" << U1 << "), Umax(" << PCurve->LastParameter() << ")\n";
#endif
U1 = PCurve->LastParameter();
}
if (U2 - PCurve->LastParameter() > Precision::PConfusion())
{
#ifdef DEB
cout << "DBRep_IsoBuilder PCurve : parameters out of range\n";
cout << " U2(" << U2 << "), Umax(" << PCurve->LastParameter() << ")\n";
#endif
U2 = PCurve->LastParameter();
}
}
} }
//if U1 and U2 coincide-->do nothing // if U1 and U2 coincide-->do nothing
if (Abs(U1-U2) <= Precision::PConfusion()) continue; if (Abs (U1 - U2) <= Precision::PConfusion()) continue;
Handle (Geom2d_TrimmedCurve) TrimPCurve = new Geom2d_TrimmedCurve (PCurve, U1, U2);
Handle (Geom2d_TrimmedCurve) TrimPCurve = new Geom2d_TrimmedCurve (PCurve, U1, U2) ; AddElement (TrimPCurve, TopologicalEdge.Orientation());
#ifdef DEB
Standard_Integer IndE =
#endif
AddElement (TrimPCurve, TopologicalEdge.Orientation()) ;
} }
} }
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
// Loading and trimming the hatchings. // Loading and trimming the hatchings.
//----------------------------------------------------------------------- //-----------------------------------------------------------------------