X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBuildAPI%2FBuildAPI_Vertex.h;h=a5adb7e3454df856aa131e969bb45dc4a2076286;hb=88ee9b2b81cf93a6324336b57e30cc8a3a487499;hp=d4dc4b8c58fdce40458a5016e5e19dadcd9f6c97;hpb=d34842c50d5f335cca443c78910c16c54139c7d0;p=modules%2Fshaper.git diff --git a/src/BuildAPI/BuildAPI_Vertex.h b/src/BuildAPI/BuildAPI_Vertex.h index d4dc4b8c5..a5adb7e34 100644 --- a/src/BuildAPI/BuildAPI_Vertex.h +++ b/src/BuildAPI/BuildAPI_Vertex.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: BuildAPI_Vertex.h -// Created: 09 June 2016 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2022 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 BuildAPI_Vertex_H_ #define BuildAPI_Vertex_H_ @@ -31,12 +44,21 @@ public: explicit BuildAPI_Vertex(const std::shared_ptr& theFeature, const std::list& theBaseObjects); + /// Constructor with values. + BUILDAPI_EXPORT + explicit BuildAPI_Vertex(const std::shared_ptr& theFeature, + const std::list& theBaseObjects, + const bool theDoIntersect); + /// Destructor. BUILDAPI_EXPORT virtual ~BuildAPI_Vertex(); - INTERFACE_1(BuildPlugin_Vertex::ID(), - baseObjects, BuildPlugin_Vertex::BASE_OBJECTS_ID(), ModelAPI_AttributeSelectionList, /** Base objects */) + INTERFACE_2(BuildPlugin_Vertex::ID(), + baseObjects, BuildPlugin_Vertex::BASE_OBJECTS_ID(), + ModelAPI_AttributeSelectionList, /** Base objects */, + doIntersect, BuildPlugin_Vertex::INTERSECT_ID(), + ModelAPI_AttributeBoolean, /** Compute intersections */) /// Modify base attribute of the feature. BUILDAPI_EXPORT @@ -56,4 +78,11 @@ BUILDAPI_EXPORT VertexPtr addVertex(const std::shared_ptr& thePart, const std::list& theBaseObjects); +/// \ingroup CPPHighAPI +/// \brief Create Vertex feature. +BUILDAPI_EXPORT +VertexPtr addVertex(const std::shared_ptr& thePart, + const std::list& theBaseObjects, + const bool theDoIntersect); + #endif // BuildAPI_Vertex_H_