From: mbs Date: Fri, 21 Apr 2023 10:51:58 +0000 (+0100) Subject: fixed problem, where wrong point was stored in hdf X-Git-Tag: V9_11_0a1~7 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=57ce01534f031b1d9670ede16d8c92736236cfca;p=modules%2Fshaper.git fixed problem, where wrong point was stored in hdf --- 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); }