Salome HOME
Reverted some changes in salome build/run scripts.
[modules/shaper.git] / src / PrimitivesAPI / PrimitivesAPI_Sphere.cpp
index eaba588f7489a1e617304d065aa03372acfa6952..dc8b6aba6b36e17bc208617183f8c07c24ebe4b6 100644 (file)
@@ -19,14 +19,14 @@ PrimitivesAPI_Sphere::PrimitivesAPI_Sphere(const std::shared_ptr<ModelAPI_Featur
 
 //==================================================================================================
 PrimitivesAPI_Sphere::PrimitivesAPI_Sphere(const std::shared_ptr<ModelAPI_Feature>& theFeature,
-                                                      const ModelHighAPI_Selection& theCenterPoint,
-                                                      const ModelHighAPI_Double& theRadius)
+                                           const ModelHighAPI_Selection& theCenterPoint,
+                                           const ModelHighAPI_Double& theRadius)
 : ModelHighAPI_Interface(theFeature)
 {
-       if (initialize()) {
-         fillAttribute(theCenterPoint, centerPoint());
-         setRadius(theRadius);
-       }
+  if (initialize()) {
+    fillAttribute(theCenterPoint, centerPoint());
+    setRadius(theRadius);
+  }
 }
 
 //==================================================================================================