mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0028771: BRepOffset_MakeOffset incorrect result
Correction of tolerance of new edges, which belongs planar faces is improved Test case added.
This commit is contained in:
parent
354c94b724
commit
4560c05480
@ -314,6 +314,10 @@ static BRepOffset_Error checkSinglePoint(const Standard_Real theUParam,
|
|||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
static void UpdateTolerance ( TopoDS_Shape& myShape,
|
static void UpdateTolerance ( TopoDS_Shape& myShape,
|
||||||
const TopTools_IndexedMapOfShape& myFaces);
|
const TopTools_IndexedMapOfShape& myFaces);
|
||||||
|
static Standard_Real ComputeMaxDist(const gp_Pln& thePlane,
|
||||||
|
const Handle(Geom_Curve)& theCrv,
|
||||||
|
const Standard_Real theFirst,
|
||||||
|
const Standard_Real theLast);
|
||||||
|
|
||||||
static void CorrectSolid(TopoDS_Solid& theSol, TopTools_ListOfShape& theSolList);
|
static void CorrectSolid(TopoDS_Solid& theSol, TopTools_ListOfShape& theSolList);
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
@ -3342,15 +3346,39 @@ void BRepOffset_MakeOffset::EncodeRegularity ()
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : ComputeMaxDist
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
Standard_Real ComputeMaxDist(const gp_Pln& thePlane,
|
||||||
|
const Handle(Geom_Curve)& theCrv,
|
||||||
|
const Standard_Real theFirst,
|
||||||
|
const Standard_Real theLast)
|
||||||
|
{
|
||||||
|
Standard_Real aMaxDist = 0.;
|
||||||
|
Standard_Integer i, NCONTROL = 23;
|
||||||
|
Standard_Real aPrm, aDist2;
|
||||||
|
gp_Pnt aP;
|
||||||
|
for (i = 0; i< NCONTROL; i++) {
|
||||||
|
aPrm = ((NCONTROL - 1 - i)*theFirst + i*theLast) / (NCONTROL - 1);
|
||||||
|
aP = theCrv->Value(aPrm);
|
||||||
|
if (Precision::IsInfinite(aP.X()) || Precision::IsInfinite(aP.Y())
|
||||||
|
|| Precision::IsInfinite(aP.Z()))
|
||||||
|
{
|
||||||
|
return Precision::Infinite();
|
||||||
|
}
|
||||||
|
aDist2 = thePlane.SquareDistance(aP);
|
||||||
|
if (aDist2 > aMaxDist) aMaxDist = aDist2;
|
||||||
|
}
|
||||||
|
return sqrt(aMaxDist)*1.05;
|
||||||
|
}
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : UpDateTolerance
|
//function : UpDateTolerance
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
void UpdateTolerance (TopoDS_Shape& S,
|
void UpdateTolerance (TopoDS_Shape& S,
|
||||||
const TopTools_IndexedMapOfShape& Faces)
|
const TopTools_IndexedMapOfShape& Faces)
|
||||||
{
|
{
|
||||||
BRep_Builder B;
|
BRep_Builder B;
|
||||||
TopTools_MapOfShape View;
|
TopTools_MapOfShape View;
|
||||||
@ -3366,27 +3394,55 @@ void UpdateTolerance (TopoDS_Shape& S,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TopExp_Explorer Exp;
|
Standard_Real Tol;
|
||||||
for (Exp.Init(S,TopAbs_EDGE); Exp.More(); Exp.Next()) {
|
TopExp_Explorer ExpF;
|
||||||
TopoDS_Edge E = TopoDS::Edge(Exp.Current());
|
for (ExpF.Init(S, TopAbs_FACE); ExpF.More(); ExpF.Next())
|
||||||
if (View.Add(E)) {
|
{
|
||||||
Handle(BRepCheck_Edge) EdgeCorrector = new BRepCheck_Edge(E);
|
const TopoDS_Shape& F = ExpF.Current();
|
||||||
Standard_Real Tol = EdgeCorrector->Tolerance();
|
if (Faces.Contains(F))
|
||||||
B.UpdateEdge (E,Tol);
|
{
|
||||||
|
continue;
|
||||||
// Update the vertices.
|
}
|
||||||
TopExp::Vertices(E,V[0],V[1]);
|
BRepAdaptor_Surface aBAS(TopoDS::Face(F), Standard_False);
|
||||||
|
TopExp_Explorer Exp;
|
||||||
for (Standard_Integer i = 0 ; i <=1 ; i++) {
|
for (Exp.Init(F, TopAbs_EDGE); Exp.More(); Exp.Next()) {
|
||||||
if (View.Add(V[i])) {
|
TopoDS_Edge E = TopoDS::Edge(Exp.Current());
|
||||||
Handle(BRep_TVertex) TV = Handle(BRep_TVertex)::DownCast(V[i].TShape());
|
Standard_Boolean isUpdated = Standard_False;
|
||||||
TV->Tolerance(0.);
|
if (aBAS.GetType() == GeomAbs_Plane)
|
||||||
Handle(BRepCheck_Vertex) VertexCorrector = new BRepCheck_Vertex(V[i]);
|
{
|
||||||
B.UpdateVertex (V[i],VertexCorrector->Tolerance());
|
//Edge does not seem to have pcurve on plane,
|
||||||
// use the occasion to clean the vertices.
|
//so EdgeCorrector does not include it in tolerance calculation
|
||||||
(TV->ChangePoints()).Clear();
|
Standard_Real aFirst, aLast;
|
||||||
|
Handle(Geom_Curve) aCrv = BRep_Tool::Curve(E, aFirst, aLast);
|
||||||
|
Standard_Real aMaxDist = ComputeMaxDist(aBAS.Plane(), aCrv, aFirst, aLast);
|
||||||
|
B.UpdateEdge(E, aMaxDist);
|
||||||
|
isUpdated = Standard_True;
|
||||||
|
}
|
||||||
|
if (View.Add(E))
|
||||||
|
{
|
||||||
|
|
||||||
|
BRepCheck_Edge EdgeCorrector(E);
|
||||||
|
Tol = EdgeCorrector.Tolerance();
|
||||||
|
B.UpdateEdge(E, Tol);
|
||||||
|
isUpdated = Standard_True;
|
||||||
|
}
|
||||||
|
if (isUpdated)
|
||||||
|
{
|
||||||
|
Tol = BRep_Tool::Tolerance(E);
|
||||||
|
// Update the vertices.
|
||||||
|
TopExp::Vertices(E, V[0], V[1]);
|
||||||
|
|
||||||
|
for (Standard_Integer i = 0; i <= 1; i++) {
|
||||||
|
if (View.Add(V[i])) {
|
||||||
|
Handle(BRep_TVertex) TV = Handle(BRep_TVertex)::DownCast(V[i].TShape());
|
||||||
|
TV->Tolerance(0.);
|
||||||
|
BRepCheck_Vertex VertexCorrector(V[i]);
|
||||||
|
B.UpdateVertex(V[i], VertexCorrector.Tolerance());
|
||||||
|
// use the occasion to clean the vertices.
|
||||||
|
(TV->ChangePoints()).Clear();
|
||||||
|
}
|
||||||
|
B.UpdateVertex(V[i], Tol);
|
||||||
}
|
}
|
||||||
B.UpdateVertex(V[i],Tol);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
tests/bugs/modalg_6/bug28771
Normal file
12
tests/bugs/modalg_6/bug28771
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC28771"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
##############################################
|
||||||
|
# BRepOffset_MakeOffset incorrect result
|
||||||
|
##############################################
|
||||||
|
|
||||||
|
restore [locate_data_file bug28771_shell.brep] s
|
||||||
|
encoderegularity s 1
|
||||||
|
thickshell r s .12
|
||||||
|
checkshape r
|
Loading…
x
Reference in New Issue
Block a user