From 2b5d00b259c3a56db1746cf4b45d74a0f52e895c Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Mon, 19 Oct 2020 10:41:44 +0200 Subject: [PATCH] csg2d - add points as 0d-elements to mesh --- libsrc/geom2d/csg2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/geom2d/csg2d.cpp b/libsrc/geom2d/csg2d.cpp index 4fa163d9..880d8547 100644 --- a/libsrc/geom2d/csg2d.cpp +++ b/libsrc/geom2d/csg2d.cpp @@ -1856,7 +1856,7 @@ shared_ptr CSG2d :: GenerateSplineGeometry() { // not found -> insert to tree netgen::GeomPoint<2> gp(p); - gp.name = ""; + gp.name = "default"; geo->geompoints.Append(gp); ptree.Insert(p,p,geo->geompoints.Size()-1); }