From 4258e40f486af7393e3c76219d31c51a28aee240 Mon Sep 17 00:00:00 2001 From: nds Date: Mon, 22 Jun 2015 15:13:48 +0300 Subject: [PATCH] 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. --- src/ConstructionPlugin/ConstructionPlugin_Plane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2