]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp
Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_FaceBuilder.cpp
index f543c06a669534e26a8d5aa71d42db28ac64e809..3c9a61fda4fdd8a23a07ce7f073ddffb7768bb01 100644 (file)
 #include <Geom_Plane.hxx>
 
 boost::shared_ptr<GeomAPI_Shape> GeomAlgoAPI_FaceBuilder::square(
-  boost::shared_ptr<GeomAPI_Pnt> theCenter, boost::shared_ptr<GeomAPI_Dir> theNormal,
-  const double theSize)
+    boost::shared_ptr<GeomAPI_Pnt> theCenter, boost::shared_ptr<GeomAPI_Dir> theNormal,
+    const double theSize)
 {
   const gp_Pnt& aCenter = theCenter->impl<gp_Pnt>();
   const gp_Dir& aDir = theNormal->impl<gp_Dir>();
   gp_Pln aPlane(aCenter, aDir);
   // half of the size in each direction from the center
-  BRepBuilderAPI_MakeFace aFaceBuilder(aPlane, 
-    -theSize / 2., theSize / 2., -theSize / 2., theSize / 2.);
+  BRepBuilderAPI_MakeFace aFaceBuilder(aPlane, -theSize / 2., theSize / 2., -theSize / 2.,
+                                       theSize / 2.);
   boost::shared_ptr<GeomAPI_Shape> aRes(new GeomAPI_Shape);
   aRes->setImpl(new TopoDS_Shape(aFaceBuilder.Face()));
   return aRes;
 }
 
 boost::shared_ptr<GeomAPI_Pln> GeomAlgoAPI_FaceBuilder::plane(
-  boost::shared_ptr<GeomAPI_Shape> theFace)
+    boost::shared_ptr<GeomAPI_Shape> theFace)
 {
   boost::shared_ptr<GeomAPI_Pln> aResult;
-  if (!theFace) return aResult; // bad shape
+  if (!theFace)
+    return aResult;  // bad shape
   TopoDS_Shape aShape = theFace->impl<TopoDS_Shape>();
-  if (aShape.IsNull()) return aResult; // null shape
+  if (aShape.IsNull())
+    return aResult;  // null shape
   TopoDS_Face aFace = TopoDS::Face(aShape);
-  if (aFace.IsNull()) return aResult; // not face
+  if (aFace.IsNull())
+    return aResult;  // not face
   Handle(Geom_Surface) aSurf = BRep_Tool::Surface(aFace);
-  if (aSurf.IsNull()) return aResult; // no surface
+  if (aSurf.IsNull())
+    return aResult;  // no surface
   Handle(Geom_Plane) aPlane = Handle(Geom_Plane)::DownCast(aSurf);
-  if (aPlane.IsNull()) return aResult; // not planar
+  if (aPlane.IsNull())
+    return aResult;  // not planar
   double aA, aB, aC, aD;
   aPlane->Coefficients(aA, aB, aC, aD);
   aResult = boost::shared_ptr<GeomAPI_Pln>(new GeomAPI_Pln(aA, aB, aC, aD));