From 8f77aa458b5dad9d6ba7d3d763b1791f590ecc3b Mon Sep 17 00:00:00 2001 From: "mhochsteger@cerbsim.com" Date: Tue, 30 Nov 2021 20:26:35 +0100 Subject: [PATCH] fix output --- libsrc/occ/occgenmesh.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/occ/occgenmesh.cpp b/libsrc/occ/occgenmesh.cpp index 65eaba39..a1860eeb 100644 --- a/libsrc/occ/occgenmesh.cpp +++ b/libsrc/occ/occgenmesh.cpp @@ -269,9 +269,9 @@ namespace netgen static Timer tprint("print"); tprint.Start(); if (meshing.GetProjectionType() == PLANESPACE) - PrintMessage (2, "Face ", k, " / ", mesh.GetNFD(), " (plane space projection)"); + PrintMessage (2, "Face ", k, " / ", geom.GetNFaces(), " (plane space projection)"); else - PrintMessage (2, "Face ", k, " / ", mesh.GetNFD(), " (parameter space projection)"); + PrintMessage (2, "Face ", k, " / ", geom.GetNFaces(), " (parameter space projection)"); tprint.Stop(); // Meshing2OCCSurfaces meshing(f2, bb);