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

0026182: Calling ShapeFix_FixSmallFace.RemoveSmallFaces() always leads to stack overflow

Unused methods RemoveSmallFaces() and SplitFaces() are removed.
This commit is contained in:
abv 2015-05-06 06:20:29 +03:00
parent a7f510bfae
commit 0bbdddae85
2 changed files with 0 additions and 25 deletions

View File

@ -64,17 +64,10 @@ is
---Purpose :
--
SplitFaces(me: mutable) returns Shape from TopoDS;
---Purpose : Split faces by splitting vertices
--
SplitOneFace(me: mutable; F : in out Face from TopoDS;theSplittedFaces: in out Compound from TopoDS) returns Boolean;
---Purpose : Compute data for face splitting.
--
RemoveSmallFaces(me:mutable) returns Shape from TopoDS;
---Purpose : Remove small faces from compound.
--Fixes after removing
FixFace(me: mutable; F: Face from TopoDS) returns Face from TopoDS;
FixShape(me: mutable) returns Shape from TopoDS;

View File

@ -537,14 +537,6 @@ ShapeFix_FixSmallFace::ShapeFix_FixSmallFace()
myShape = Context()->Apply(myShape);
myResult = myShape;
return myShape;
}
TopoDS_Shape ShapeFix_FixSmallFace::SplitFaces()
{
myShape = RemoveSmallFaces();
myResult = myShape;
return myShape;
}
Standard_Boolean ShapeFix_FixSmallFace::SplitOneFace(TopoDS_Face& F,TopoDS_Compound& theSplittedFaces)
@ -718,16 +710,6 @@ ShapeFix_FixSmallFace::ShapeFix_FixSmallFace()
return Standard_False ;
}
TopoDS_Shape ShapeFix_FixSmallFace::RemoveSmallFaces()
{
myShape = SplitFaces();
myShape = FixSpotFace();
myShape = FixStripFace ();
return myShape;
}
TopoDS_Face ShapeFix_FixSmallFace::FixFace(const TopoDS_Face& F)
{
//smh#8