X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.cpp;h=511dae1d4a9f4b3d64abaa62c20d05ae204c091a;hb=77ce6d35ac8d2f0fdaecb4f23e0870bf74e36103;hp=728e9f56449da0e93a9756056526c8f28f16e5ac;hpb=a94fc319f2aa64b43c9a73b5ff7063923648faec;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp index 728e9f564..511dae1d4 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp @@ -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 @@ -12,10 +12,9 @@ // // 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 +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include "GeomAlgoAPI_FaceBuilder.h" @@ -120,23 +119,3 @@ std::shared_ptr GeomAlgoAPI_FaceBuilder::planarFaceByThreeVertices aFace->setImpl(new TopoDS_Face(aMakeFace.Face())); return aFace; } - -//================================================================================================== -std::shared_ptr GeomAlgoAPI_FaceBuilder::planarFaceByFaceAndVertex( - const std::shared_ptr theFace, - const std::shared_ptr theVertex) -{ - gp_Pln aPln = theFace->getPlane()->impl(); - gp_Pnt aPnt = theVertex->point()->impl(); - - std::shared_ptr 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; -}