From 182bd7bc42097b93a66f01cdfb4b58895ff8acf5 Mon Sep 17 00:00:00 2001 From: kgv Date: Thu, 9 Nov 2017 10:18:49 +0300 Subject: [PATCH] 0029304: Draw Harness, DBRep_DrawableShape - fix inappropriate use of unordered map TColStd_DataMapOfIntegerInteger has been replaced by NCollection_Vector. --- src/DBRep/DBRep_DrawableShape.cxx | 28 +++++++++------------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/src/DBRep/DBRep_DrawableShape.cxx b/src/DBRep/DBRep_DrawableShape.cxx index 22df8ddb50..95b4d022d1 100644 --- a/src/DBRep/DBRep_DrawableShape.cxx +++ b/src/DBRep/DBRep_DrawableShape.cxx @@ -1075,13 +1075,9 @@ void DBRep_DrawableShape::display(const Handle(Poly_Triangulation)& T, // allocate the arrays TColStd_Array1OfInteger Free (1, Max (1, 2 * nFree)); - - // array is replaced on map because it is impossible - // to calculate number of internal edges in advance - // due to "internal edges" - TColStd_DataMapOfIntegerInteger Internal; - - Standard_Integer fr = 1, in = 1; + NCollection_Vector< NCollection_Vec2 > anInternal; + + Standard_Integer fr = 1; const Poly_Array1OfTriangle& triangles = T->Triangles(); Standard_Integer n[3]; for (i = 1; i <= nbTriangles; i++) { @@ -1096,9 +1092,7 @@ void DBRep_DrawableShape::display(const Handle(Poly_Triangulation)& T, } // internal edge if this triangle has a lower index than the adjacent else if (i < t[j]) { - Internal.Bind(in, n[j]); - Internal.Bind(in+1, n[k]); - in += 2; + anInternal.Append (NCollection_Vec2 (n[j], n[k])); } } } @@ -1119,15 +1113,11 @@ void DBRep_DrawableShape::display(const Handle(Poly_Triangulation)& T, // internal edges dis.SetColor(Draw_bleu); - TColStd_DataMapIteratorOfDataMapOfIntegerInteger aIt(Internal); - for (; aIt.More(); aIt.Next()) { - Standard_Integer n1 = aIt.Value(); - //alvays pair is put - aIt.Next(); - Standard_Integer n2 = aIt.Value(); - dis.Draw(Nodes(n1).Transformed(tr), - Nodes(n2).Transformed(tr)); - + for (NCollection_Vector< NCollection_Vec2 >::Iterator anInterIter (anInternal); anInterIter.More(); anInterIter.Next()) + { + const Standard_Integer n1 = anInterIter.Value()[0]; + const Standard_Integer n2 = anInterIter.Value()[1]; + dis.Draw (Nodes(n1).Transformed(tr), Nodes(n2).Transformed(tr)); } }