Salome HOME
CEA : Lot2 - Add new filters
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_FaceBuilder.cpp
index e0aff60b9769d6c2d104c3a8e0b93a38acc38455..967ce62028bbfc288490b238a07f1a4ec2db4c03 100644 (file)
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        GeomAlgoAPI_FaceBuilder.cpp
-// Created:     23 Apr 2014
-// Author:      Mikhail PONIKAROV
+// Copyright (C) 2014-2021  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #include "GeomAlgoAPI_FaceBuilder.h"
 
@@ -78,7 +91,7 @@ std::shared_ptr<GeomAPI_Face> GeomAlgoAPI_FaceBuilder::planarFace(
   gp_Pln aPlane(aA, aB, aC, aD);
 
   // half of the size in each direction from the center
-  BRepBuilderAPI_MakeFace aFaceBuilder(aPlane, theX, theX + theWidth, 
+  BRepBuilderAPI_MakeFace aFaceBuilder(aPlane, theX, theX + theWidth,
                                        theY, theY + theHeight);
   std::shared_ptr<GeomAPI_Face> aRes(new GeomAPI_Face());
   aRes->setImpl(new TopoDS_Face(aFaceBuilder.Face()));
@@ -106,23 +119,3 @@ std::shared_ptr<GeomAPI_Face> GeomAlgoAPI_FaceBuilder::planarFaceByThreeVertices
   aFace->setImpl(new TopoDS_Face(aMakeFace.Face()));
   return aFace;
 }
-
-//==================================================================================================
-std::shared_ptr<GeomAPI_Face> GeomAlgoAPI_FaceBuilder::planarFaceByFaceAndVertex(
-    const std::shared_ptr<GeomAPI_Face> theFace,
-    const std::shared_ptr<GeomAPI_Vertex> theVertex)
-{
-  gp_Pln aPln = theFace->getPlane()->impl<gp_Pln>();
-  gp_Pnt aPnt = theVertex->point()->impl<gp_Pnt>();
-
-  std::shared_ptr<GeomAPI_Face> aFace;
-  GC_MakePlane aMakePlane(aPln, aPnt);
-  if(!aMakePlane.IsDone()) {
-    return aFace;
-  }
-
-  BRepBuilderAPI_MakeFace aMakeFace(aMakePlane.Value()->Pln());
-  aFace.reset(new GeomAPI_Face());
-  aFace->setImpl(new TopoDS_Face(aMakeFace.Face()));
-  return aFace;
-}