From 881def360bebe33204bc30325fc7fbbd2735f7ed Mon Sep 17 00:00:00 2001 From: mzernova Date: Fri, 31 Jan 2025 17:59:53 +0000 Subject: [PATCH] Fix formatting --- src/AIS/AIS_Manipulator.cxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/AIS/AIS_Manipulator.cxx b/src/AIS/AIS_Manipulator.cxx index 9c72c974f7..2a05795d2b 100644 --- a/src/AIS/AIS_Manipulator.cxx +++ b/src/AIS/AIS_Manipulator.cxx @@ -237,9 +237,9 @@ AIS_Manipulator::AIS_Manipulator() : myPosition(gp::XOY()), myCurrentIndex(-1), myCurrentMode(AIS_MM_None), + mySkinMode(ManipulatorSkin_Shaded), myIsActivationOnDetection(Standard_False), myIsZoomPersistentMode(Standard_True), - mySkinMode(ManipulatorSkin_Shaded), myHasStartedTransformation(Standard_False), myStartPosition(gp::XOY()), myStartPick(0.0, 0.0, 0.0), @@ -257,9 +257,9 @@ AIS_Manipulator::AIS_Manipulator(const gp_Ax2& thePosition) : myPosition(thePosition), myCurrentIndex(-1), myCurrentMode(AIS_MM_None), + mySkinMode(ManipulatorSkin_Shaded), myIsActivationOnDetection(Standard_False), myIsZoomPersistentMode(Standard_True), - mySkinMode(ManipulatorSkin_Shaded), myHasStartedTransformation(Standard_False), myStartPosition(gp::XOY()), myStartPick(0.0, 0.0, 0.0), @@ -1536,7 +1536,8 @@ void AIS_Manipulator::ComputeSelection(const Handle(SelectMgr_Selection)& theSel gp_XYZ aMidP = (aP1.XYZ() + aP2.XYZ()) / 2.0; gp_XYZ anOrig = aMidP.Normalized().Multiplied(aSensitivityOffset); - Handle(Select3D_SensitiveSegment) aLine1 = new Select3D_SensitiveSegment(anOwner, aP1, aP2); + Handle(Select3D_SensitiveSegment) aLine1 = + new Select3D_SensitiveSegment(anOwner, aP1, aP2); aLine1->SetSensitivityFactor(aLowSensitivity); theSelection->Add(aLine1); Handle(Select3D_SensitiveSegment) aLine2 =