From: Artem Zhidkov Date: Thu, 30 Jul 2020 14:58:13 +0000 (+0300) Subject: Issue #3236: Generalization of extrusion X-Git-Tag: V9_6_0a1~28 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=debd3a1b0fc624a25f7f9c2d8c08c977ed72e2de;p=modules%2Fshaper.git Issue #3236: Generalization of extrusion Allow construction points as a base for extrusion and revolution. --- diff --git a/src/ConstructionPlugin/ConstructionPlugin_Point.cpp b/src/ConstructionPlugin/ConstructionPlugin_Point.cpp index 9b1744d32..30802732b 100644 --- a/src/ConstructionPlugin/ConstructionPlugin_Point.cpp +++ b/src/ConstructionPlugin/ConstructionPlugin_Point.cpp @@ -143,7 +143,7 @@ void ConstructionPlugin_Point::execute() removeResults(1); // for case the point type was switched from multi-results type std::shared_ptr aConstr = document()->createConstruction(data()); - aConstr->setInfinite(true); + aConstr->setInfinite(false); aConstr->setShape(aShape); setResult(aConstr); }