Salome HOME
Updated copyright comment
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_FaceBuilder.cpp
index 728e9f56449da0e93a9756056526c8f28f16e5ac..511dae1d4a9f4b3d64abaa62c20d05ae204c091a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // 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
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #include "GeomAlgoAPI_FaceBuilder.h"
@@ -120,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;
-}