X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.cpp;h=511dae1d4a9f4b3d64abaa62c20d05ae204c091a;hb=77ce6d35ac8d2f0fdaecb4f23e0870bf74e36103;hp=0dce2f9f99cfd1010f8ee45e5d0803e29ef94f6b;hpb=423c10234142d14d0d5de89383f2f96a4ec5930f;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp index 0dce2f9f9..511dae1d4 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.cpp @@ -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-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 +// 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" @@ -106,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; -}