From 57ce01534f031b1d9670ede16d8c92736236cfca Mon Sep 17 00:00:00 2001 From: mbs Date: Fri, 21 Apr 2023 11:51:58 +0100 Subject: [PATCH] fixed problem, where wrong point was stored in hdf --- src/ConstructionPlugin/ConstructionPlugin_Point.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ConstructionPlugin/ConstructionPlugin_Point.cpp b/src/ConstructionPlugin/ConstructionPlugin_Point.cpp index 90afa702e..f6d49d372 100644 --- a/src/ConstructionPlugin/ConstructionPlugin_Point.cpp +++ b/src/ConstructionPlugin/ConstructionPlugin_Point.cpp @@ -121,6 +121,7 @@ void ConstructionPlugin_Point::execute() for (; aPIter != aPoints.end(); aPIter++, anIndex++) { std::shared_ptr aConstr = document()->createConstruction(data(), anIndex); + aConstr->setInfinite(true); aConstr->setShape(*aPIter); setResult(aConstr, anIndex); } -- 2.39.2