From 97e80b8c3060e8bfc62b714c66b0ad9390996d74 Mon Sep 17 00:00:00 2001 From: Xu Zhongxing Date: Thu, 4 Nov 2021 13:15:49 +0800 Subject: [PATCH] 0032649: Bug in BRepLib::EnsureNormalConsistency() Fix a typo in variable name. --- src/BRepLib/BRepLib.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BRepLib/BRepLib.cxx b/src/BRepLib/BRepLib.cxx index 18733f8563..d89ecb4c1f 100644 --- a/src/BRepLib/BRepLib.cxx +++ b/src/BRepLib/BRepLib.cxx @@ -2423,7 +2423,7 @@ Standard_Boolean BRepLib:: gp_Vec3f aNorm1f, aNorm2f; aPT1->Normal (aFNodF1, aNorm1f); - aPT1->Normal (aFNodF2, aNorm2f); + aPT2->Normal (aFNodF2, aNorm2f); const gp_XYZ aNorm1 (aNorm1f.x(), aNorm1f.y(), aNorm1f.z()); const gp_XYZ aNorm2 (aNorm2f.x(), aNorm2f.y(), aNorm2f.z()); const Standard_Real aDot = aNorm1 * aNorm2;