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

Method BRepGProp::LinearProperties was changed to avoid degenerated edges.

This commit is contained in:
abk 2012-12-28 19:53:42 +04:00
parent 1566c54533
commit 34672ad147

View File

@ -32,6 +32,7 @@
#include <TopTools_ListOfShape.hxx> #include <TopTools_ListOfShape.hxx>
#include <BRepCheck_Shell.hxx> #include <BRepCheck_Shell.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx> #include <TopTools_ListIteratorOfListOfShape.hxx>
#include <BRep_TEdge.hxx>
#ifdef DEB #ifdef DEB
static Standard_Integer AffichEps = 0; static Standard_Integer AffichEps = 0;
#endif #endif
@ -55,9 +56,15 @@ void BRepGProp::LinearProperties(const TopoDS_Shape& S, GProp_GProps& SProps){
// Standard_Integer n,i; // Standard_Integer n,i;
TopExp_Explorer ex; TopExp_Explorer ex;
for (ex.Init(S,TopAbs_EDGE); ex.More(); ex.Next()) { for (ex.Init(S,TopAbs_EDGE); ex.More(); ex.Next()) {
BAC.Initialize(TopoDS::Edge(ex.Current())); TopoDS_Edge anES = TopoDS::Edge(ex.Current());
BRepGProp_Cinert CG(BAC,P); Handle_BRep_TEdge & anEG = (Handle_BRep_TEdge &)anES.TShape();
SProps.Add(CG); BRep_TEdge dsd;
if (!anEG->Degenerated())
{
BAC.Initialize(anES);
BRepGProp_Cinert CG(BAC,P);
SProps.Add(CG);
}
} }
} }