From 5e1e45fc69d065a82cb7fcd07aad21c311ea02e3 Mon Sep 17 00:00:00 2001 From: kgv Date: Tue, 27 Aug 2013 08:32:04 +0400 Subject: [PATCH] 0024128: Prs3d_WFShape - remove debug environment switch DEBUG_TRIANGLES --- src/Prs3d/Prs3d_WFShape.cxx | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/src/Prs3d/Prs3d_WFShape.cxx b/src/Prs3d/Prs3d_WFShape.cxx index 5cafc11abe..f3d500cf6b 100644 --- a/src/Prs3d/Prs3d_WFShape.cxx +++ b/src/Prs3d/Prs3d_WFShape.cxx @@ -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); }