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

Calculation of gravity center was made by vertices data for degenerated

edge without representations.
This commit is contained in:
abk 2013-01-09 13:40:56 +04:00
parent 163a262a70
commit 9e7854e71f

View File

@ -24,7 +24,9 @@
#include <BRepGProp_VinertGK.hxx>
#include <BRepGProp_Face.hxx>
#include <BRepGProp_Domain.hxx>
#include <GProp_PGProps.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Vertex.hxx>
#include <BRepAdaptor_Curve.hxx>
#include <TopTools.hxx>
@ -33,6 +35,7 @@
#include <BRepCheck_Shell.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
#include <BRep_TEdge.hxx>
#include <BRep_TVertex.hxx>
#ifdef DEB
static Standard_Integer AffichEps = 0;
#endif
@ -65,6 +68,20 @@ void BRepGProp::LinearProperties(const TopoDS_Shape& S, GProp_GProps& SProps){
BRepGProp_Cinert CG(BAC,P);
SProps.Add(CG);
}
else
{
GProp_PGProps aPD;
for (TopExp_Explorer aVE(anES, TopAbs_VERTEX); aVE.More(); aVE.Next())
{
TopoDS_Vertex aVS = TopoDS::Vertex(aVE.Current());
Handle_BRep_TVertex & aVG = (Handle_BRep_TVertex &)aVS.TShape();
gp_Pnt aP = aVG->Pnt();
aP.Transform(anES.Location());
aP.Transform(S.Location());
aPD.AddPoint(aP);
}
SProps.Add(aPD);
}
}
}