X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBuildAPI%2FBuildAPI_Vertex.cpp;h=f94b230f18cf841a6f2161690c27852faae9d2f5;hb=a211165b993cec59888b300199b44b525c0daf69;hp=f041352aab966b0cad31ea02ebf7bb131f7f4a10;hpb=a94fc319f2aa64b43c9a73b5ff7063923648faec;p=modules%2Fshaper.git diff --git a/src/BuildAPI/BuildAPI_Vertex.cpp b/src/BuildAPI/BuildAPI_Vertex.cpp index f041352aa..f94b230f1 100644 --- a/src/BuildAPI/BuildAPI_Vertex.cpp +++ b/src/BuildAPI/BuildAPI_Vertex.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// 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 @@ -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 "BuildAPI_Vertex.h" @@ -36,6 +35,19 @@ BuildAPI_Vertex::BuildAPI_Vertex(const std::shared_ptr& theFea : ModelHighAPI_Interface(theFeature) { if(initialize()) { + fillAttribute(false, mydoIntersect); + setBase(theBaseObjects); + } +} + +//================================================================================================== +BuildAPI_Vertex::BuildAPI_Vertex(const std::shared_ptr& theFeature, + const std::list& theBaseObjects, + const bool theDoIntersect) +: ModelHighAPI_Interface(theFeature) +{ + if(initialize()) { + fillAttribute(theDoIntersect, mydoIntersect); setBase(theBaseObjects); } } @@ -62,6 +74,15 @@ VertexPtr addVertex(const std::shared_ptr& thePart, return VertexPtr(new BuildAPI_Vertex(aFeature, theBaseObjects)); } +//================================================================================================== +VertexPtr addVertex(const std::shared_ptr& thePart, + const std::list& theBaseObjects, + const bool theDoIntersect) +{ + std::shared_ptr aFeature = thePart->addFeature(BuildAPI_Vertex::ID()); + return VertexPtr(new BuildAPI_Vertex(aFeature, theBaseObjects, theDoIntersect)); +} + //================================================================================================== void BuildAPI_Vertex::dump(ModelHighAPI_Dumper& theDumper) const { @@ -69,5 +90,6 @@ void BuildAPI_Vertex::dump(ModelHighAPI_Dumper& theDumper) const std::string aPartName = theDumper.name(aBase->document()); theDumper << aBase << " = model.addVertex(" << aPartName << ", " - << aBase->selectionList(BuildPlugin_Vertex::BASE_OBJECTS_ID()) << ")" << std::endl; + << aBase->selectionList(BuildPlugin_Vertex::BASE_OBJECTS_ID()) << ", " + << aBase->boolean(BuildPlugin_Vertex::INTERSECT_ID()) << ")" << std::endl; }