mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024128: Prs3d_WFShape - remove debug environment switch DEBUG_TRIANGLES
This commit is contained in:
parent
4355f260b0
commit
5e1e45fc69
@ -348,17 +348,10 @@ void Prs3d_WFShape::Add (const Handle (Prs3d_Presentation)& thePresentation,
|
|||||||
TopLoc_Location aLocation;
|
TopLoc_Location aLocation;
|
||||||
Standard_Integer anI, aJ, aN[3];
|
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;
|
TColgp_SequenceOfPnt aSurfPoints;
|
||||||
for (aTool.InitFace(); aTool.MoreFace(); aTool.NextFace())
|
for (aTool.InitFace(); aTool.MoreFace(); aTool.NextFace())
|
||||||
{
|
{
|
||||||
if (!aTool.HasSurface() || isDispTriangles)
|
if (!aTool.HasSurface())
|
||||||
{
|
{
|
||||||
Handle(Poly_Triangulation) T = aTool.CurrentTriangulation (aLocation);
|
Handle(Poly_Triangulation) T = aTool.CurrentTriangulation (aLocation);
|
||||||
if (!T.IsNull())
|
if (!T.IsNull())
|
||||||
@ -426,16 +419,6 @@ void Prs3d_WFShape::Add (const Handle (Prs3d_Presentation)& thePresentation,
|
|||||||
aSurfPoints.Append (aPoint2);
|
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));
|
aSurfArray->AddVertex (aSurfPoints.Value (anI + 1));
|
||||||
}
|
}
|
||||||
Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup (thePresentation);
|
Handle(Graphic3d_Group) aGroup = Prs3d_Root::NewGroup (thePresentation);
|
||||||
aGroup->SetPrimitivesAspect ((isDispTriangles && aTool.HasSurface())
|
aGroup->SetPrimitivesAspect (theDrawer->FreeBoundaryAspect()->Aspect());
|
||||||
? theDrawer->UIsoAspect()->Aspect()
|
|
||||||
: theDrawer->FreeBoundaryAspect()->Aspect());
|
|
||||||
aGroup->AddPrimitiveArray (aSurfArray);
|
aGroup->AddPrimitiveArray (aSurfArray);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user