From d5c67ba02e30831d667fdbe7cc1003b0e58b3e0e Mon Sep 17 00:00:00 2001 From: bugmaster <> Date: Tue, 27 Sep 2011 10:23:36 +0000 Subject: [PATCH] Update for OCCT 6.5.2 --- samples/mfc/standard/Common/User_Cylinder.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/mfc/standard/Common/User_Cylinder.cxx b/samples/mfc/standard/Common/User_Cylinder.cxx index c5fbb71976..5c53eb0dea 100755 --- a/samples/mfc/standard/Common/User_Cylinder.cxx +++ b/samples/mfc/standard/Common/User_Cylinder.cxx @@ -389,10 +389,10 @@ void User_Cylinder::ComputeSelection(const Handle_SelectMgr_Selection& aSelectio { switch(aMode){ case 0: - StdSelect_BRepSelectionTool::Load(aSelection,this,myShape,TopAbs_SHAPE, 0, 0); + StdSelect_BRepSelectionTool::Load(aSelection,this,myShape,TopAbs_SHAPE, 0.01, 0.1); break; case 4: - StdSelect_BRepSelectionTool::Load(aSelection,this,myShape,TopAbs_FACE, 0, 0); + StdSelect_BRepSelectionTool::Load(aSelection,this,myShape,TopAbs_FACE, 0.01, 0.1); break; } }