From: nds Date: Mon, 22 Jun 2015 12:13:48 +0000 (+0300) Subject: Issue #555 - Make a number of shifted/rotated copies - selected object does not appea... X-Git-Tag: V_1.3.0~217 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4258e40f486af7393e3c76219d31c51a28aee240;p=modules%2Fshaper.git Issue #555 - Make a number of shifted/rotated copies - selected object does not appear in List of objects It provides an infinite state for plane/axis shapes. --- diff --git a/src/ConstructionPlugin/ConstructionPlugin_Plane.cpp b/src/ConstructionPlugin/ConstructionPlugin_Plane.cpp index f5735151a..549773ab7 100644 --- a/src/ConstructionPlugin/ConstructionPlugin_Plane.cpp +++ b/src/ConstructionPlugin/ConstructionPlugin_Plane.cpp @@ -153,7 +153,7 @@ std::shared_ptr ConstructionPlugin_Plane::createPlaneByGeneralEqu std::string kDefaultPlaneSize = "200"; double aSize = Config_PropManager::integer("Sketch planes", "planes_size", kDefaultPlaneSize); aSize *= 4.; - aPlaneFace = GeomAlgoAPI_FaceBuilder::square(aPlane, aSize); + aPlaneFace = GeomAlgoAPI_FaceBuilder::square(aPlane, aSize, true); } return aPlaneFace; }