From af19a36555df307d2f2a9ffab1c2c73b4e53fb6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20St=C3=B8ren?= Date: Mon, 28 Nov 2016 10:11:17 +0100 Subject: [PATCH] Intersection Box : Doubled the size of the manipulator handles --- Fwk/AppFwk/cafVizExtensions/cafBoxManipulatorPartManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fwk/AppFwk/cafVizExtensions/cafBoxManipulatorPartManager.cpp b/Fwk/AppFwk/cafVizExtensions/cafBoxManipulatorPartManager.cpp index aeb48372de..b254736d0c 100644 --- a/Fwk/AppFwk/cafVizExtensions/cafBoxManipulatorPartManager.cpp +++ b/Fwk/AppFwk/cafVizExtensions/cafBoxManipulatorPartManager.cpp @@ -249,7 +249,7 @@ void BoxManipulatorPartManager::createAllHandleParts() //-------------------------------------------------------------------------------------------------- void BoxManipulatorPartManager::createCubeFaceHandlePart(BoxFace face, cvf::Vec3f p1, cvf::Vec3f p2, cvf::Vec3f p3, cvf::Vec3f p4) { - float handleSize = static_cast(m_sizeOnStartManipulation.length() * 0.02); + float handleSize = static_cast(m_sizeOnStartManipulation.length() * 0.05); Vec3f center = (p1 + p2 + p3 + p4) / 4.0f;