From 571a2ef4a2ca239f292f2fa44c77084f1e9ad613 Mon Sep 17 00:00:00 2001 From: Jan Kleinert Date: Mon, 2 Sep 2024 12:27:12 +0200 Subject: [PATCH] Update src/common/tiglcommonfunctions.cpp --- src/common/tiglcommonfunctions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/tiglcommonfunctions.cpp b/src/common/tiglcommonfunctions.cpp index e8dfb9f87..351467787 100644 --- a/src/common/tiglcommonfunctions.cpp +++ b/src/common/tiglcommonfunctions.cpp @@ -1321,8 +1321,7 @@ TopoDS_Wire BuildWireRectangle(const double heightToWidthRatio, const double cor } TopoDS_Wire wire; - if(!curve.IsNull()) - { + if (!curve.IsNull()) { wire = BuildWireFromEdges(BRepBuilderAPI_MakeEdge(curve).Edge()); } return wire;