X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAlgoAPI%2FGeomAlgoAPI_FaceBuilder.h;h=c3be0a25fbf2b60451383a882f9b3bd46da85d11;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=7db03a41b72cd57084eef25a5c4182e68756ff0f;hpb=7bf19255421b34594c7b0a76d0ce28166d0ce895;p=modules%2Fshaper.git diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h index 7db03a41b..c3be0a25f 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h +++ b/src/GeomAlgoAPI/GeomAlgoAPI_FaceBuilder.h @@ -1,40 +1,65 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: GeomAlgoAPI_FaceBuilder.h -// Created: 23 Apr 2014 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2023 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 +// #ifndef GeomAlgoAPI_FaceBuilder_H_ #define GeomAlgoAPI_FaceBuilder_H_ -#include -#include -#include -#include -#include +#include "GeomAlgoAPI.h" + #include -/**\class GeomAlgoAPI_FaceBuilder - * \ingroup DataAlgo - * \brief Allows to create face-shapes by different parameters - */ +class GeomAPI_Dir; +class GeomAPI_Face; +class GeomAPI_Pln; +class GeomAPI_Pnt; +class GeomAPI_Vertex; +/// \class GeomAlgoAPI_FaceBuilder +/// \ingroup DataAlgo +/// \brief Allows to create face-shapes by different parameters class GEOMALGOAPI_EXPORT GeomAlgoAPI_FaceBuilder { public: /// Creates square planar face by given point of the center, /// normal to the plane and size of square - static std::shared_ptr square(std::shared_ptr theCenter, - std::shared_ptr theNormal, - const double theSize); + static std::shared_ptr squareFace(const std::shared_ptr theCenter, + const std::shared_ptr theNormal, + const double theSize); + /// Creates square planar face by given point of the center, + /// normal to the plane and size of square + static std::shared_ptr squareFace(const std::shared_ptr thePlane, + const double theSize); - /// Returns the plane of the planar face. If it is not planar, returns empty ptr. - static std::shared_ptr plane(std::shared_ptr theFace); + /// Creates the planar face by given point of the center and normal to the plane. + static std::shared_ptr planarFace(const std::shared_ptr theCenter, + const std::shared_ptr theNormal); /// Creates a planar face by given plane, left lower point and size. - static std::shared_ptr planarFace(std::shared_ptr thePlane, - double theX, double theY, - double theWidth, double theHeight); + static std::shared_ptr planarFace(const std::shared_ptr thePlane, + const double theX, const double theY, + const double theWidth, const double theHeight); + + /// Creates a planar face by three vertices. + static std::shared_ptr planarFaceByThreeVertices( + const std::shared_ptr theVertex1, + const std::shared_ptr theVertex2, + const std::shared_ptr theVertex3); }; #endif