From 35f1e45c875d487935ac53f0186fcd971e3b1f3f Mon Sep 17 00:00:00 2001 From: anv Date: Fri, 26 Jul 2024 14:49:03 +0100 Subject: [PATCH] 0033781: Modeling Algorithms - Using incorrect boundaries while traversing through triangulation Upper boundary updated for triangulation normals traversing. --- src/BRepTools/BRepTools_TrsfModification.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BRepTools/BRepTools_TrsfModification.cxx b/src/BRepTools/BRepTools_TrsfModification.cxx index c8252f6caf..63ac4565f4 100644 --- a/src/BRepTools/BRepTools_TrsfModification.cxx +++ b/src/BRepTools/BRepTools_TrsfModification.cxx @@ -171,7 +171,7 @@ Standard_Boolean BRepTools_TrsfModification::NewTriangulation // modify normals if (theTriangulation->HasNormals()) { - for (Standard_Integer anInd = 1; anInd <= theTriangulation->NbTriangles(); ++anInd) + for (Standard_Integer anInd = 1; anInd <= theTriangulation->NbNodes(); ++anInd) { gp_Dir aNormal = theTriangulation->Normal(anInd); aNormal.Transform(aTrsf);