csg2d - add points as 0d-elements to mesh

This commit is contained in:
Matthias Hochsteger 2020-10-19 10:41:44 +02:00
parent b3d757ccd1
commit 2b5d00b259

View File

@ -1856,7 +1856,7 @@ shared_ptr<netgen::SplineGeometry2d> 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);
}