From 7739aaedf7031eaae08026f129271160ea480a61 Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Mon, 1 Feb 2021 11:27:26 +0100 Subject: [PATCH] SplineGeometry - also add point elements with empty names to mesh --- libsrc/geom2d/genmesh2d.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/libsrc/geom2d/genmesh2d.cpp b/libsrc/geom2d/genmesh2d.cpp index 61753f72..5cb9fa58 100644 --- a/libsrc/geom2d/genmesh2d.cpp +++ b/libsrc/geom2d/genmesh2d.cpp @@ -271,7 +271,6 @@ namespace netgen // add point elements for (auto & point : geompoints) - if (point.name.length()) { Point<3> newp(point(0), point(1), 0); PointIndex npi = mesh2d.AddPoint (newp, 1, FIXEDPOINT);