X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBuildAPI%2FBuildAPI_Edge.h;h=11a7fa90210d6a424a649fa964899287c22a325e;hb=ffdab8e26d4057116efdbc2ba31c6627fcf300bd;hp=2d9fe087ed9c27d7a1574650e8a3b11d8e4347c1;hpb=d34842c50d5f335cca443c78910c16c54139c7d0;p=modules%2Fshaper.git diff --git a/src/BuildAPI/BuildAPI_Edge.h b/src/BuildAPI/BuildAPI_Edge.h index 2d9fe087e..11a7fa902 100644 --- a/src/BuildAPI/BuildAPI_Edge.h +++ b/src/BuildAPI/BuildAPI_Edge.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: BuildAPI_Edge.h -// Created: 09 June 2016 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2019 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_Edge_H_ #define BuildAPI_Edge_H_ @@ -31,12 +44,25 @@ public: explicit BuildAPI_Edge(const std::shared_ptr& theFeature, const std::list& theBaseObjects); + /// Constructor by points. + BUILDAPI_EXPORT + explicit BuildAPI_Edge(const std::shared_ptr& theFeature, + const ModelHighAPI_Selection& theFirstPoint, + const ModelHighAPI_Selection& theSecondPoint); + /// Destructor. BUILDAPI_EXPORT virtual ~BuildAPI_Edge(); - INTERFACE_1(BuildPlugin_Edge::ID(), - baseObjects, BuildPlugin_Edge::BASE_OBJECTS_ID(), ModelAPI_AttributeSelectionList, /** Base objects */) + INTERFACE_4(BuildPlugin_Edge::ID(), + baseObjects, BuildPlugin_Edge::BASE_OBJECTS_ID(), + ModelAPI_AttributeSelectionList, /** Base objects */, + creationMethod, BuildPlugin_Edge::CREATION_METHOD(), + ModelAPI_AttributeString, /** Creation method */, + firstPoint, BuildPlugin_Edge::FIRST_POINT(), + ModelAPI_AttributeSelection, /** First point */, + secondPoint, BuildPlugin_Edge::SECOND_POINT(), + ModelAPI_AttributeSelection, /** Second point */) /// Modify base attribute of the feature. BUILDAPI_EXPORT @@ -55,5 +81,11 @@ typedef std::shared_ptr EdgePtr; BUILDAPI_EXPORT EdgePtr addEdge(const std::shared_ptr& thePart, const std::list& theBaseObjects); +/// \ingroup CPPHighAPI +/// \brief Create Edge feature. +BUILDAPI_EXPORT +EdgePtr addEdge(const std::shared_ptr& thePart, + const ModelHighAPI_Selection& theFirstPoint, + const ModelHighAPI_Selection& theSecondPoint); #endif // BuildAPI_Edge_H_