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

0024128: Prs3d_WFShape - remove debug environment switch DEBUG_TRIANGLES

This commit is contained in:
kgv 2013-08-27 08:32:04 +04:00 committed by bugmaster
parent 4355f260b0
commit 5e1e45fc69

View File

@ -348,17 +348,10 @@ void Prs3d_WFShape::Add (const Handle (Prs3d_Presentation)& thePresentation,
TopLoc_Location aLocation;
Standard_Integer anI, aJ, aN[3];
Standard_Boolean isDispTriangles = Standard_False;
const char* anEnvVar = getenv ("DEBUG_TRIANGLES");
if (anEnvVar != NULL)
{
isDispTriangles = (atol (anEnvVar) != 0);
}
TColgp_SequenceOfPnt aSurfPoints;
for (aTool.InitFace(); aTool.MoreFace(); aTool.NextFace())
{
if (!aTool.HasSurface() || isDispTriangles)
if (!aTool.HasSurface())
{
Handle(Poly_Triangulation) T = aTool.CurrentTriangulation (aLocation);
if (!T.IsNull())
@ -426,16 +419,6 @@ void Prs3d_WFShape::Add (const Handle (Prs3d_Presentation)& thePresentation,
aSurfPoints.Append (aPoint2);
}
}
if (isDispTriangles)
{
for (anI = 1; anI <= aNbInternal; ++anI)
{
gp_Pnt aPoint1 = aNodes (anInternal (2 * anI - 1)).Transformed (aLocation);
gp_Pnt aPoint2 = aNodes (anInternal (2 * anI )).Transformed (aLocation);
aSurfPoints.Append (aPoint1);
aSurfPoints.Append (aPoint2);
}
}
}
}
}
@ -451,9 +434,7 @@ void Prs3d_WFShape::Add (const Handle (Prs3d_Presentation)& thePresentation,
aSurfArray->AddVertex (aSurfPoints.Value (anI + 1));
}
Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup (thePresentation);
aGroup->SetPrimitivesAspect ((isDispTriangles && aTool.HasSurface())
? theDrawer->UIsoAspect()->Aspect()
: theDrawer->FreeBoundaryAspect()->Aspect());
aGroup->SetPrimitivesAspect (theDrawer->FreeBoundaryAspect()->Aspect());
aGroup->AddPrimitiveArray (aSurfArray);
}