X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesAPI%2FFeaturesAPI_Intersection.cpp;h=72d82355f4159158477bafa50226afdeb3e2efe4;hb=a55586483e5dccc5466d6ec241e2147e210d839f;hp=db967b22c0f24e154cc131f4e5b7d27b22fa05ca;hpb=87b6a30a3afb8fb32e7e43ade8d9c947d9eb1684;p=modules%2Fshaper.git diff --git a/src/FeaturesAPI/FeaturesAPI_Intersection.cpp b/src/FeaturesAPI/FeaturesAPI_Intersection.cpp index db967b22c..72d82355f 100644 --- a/src/FeaturesAPI/FeaturesAPI_Intersection.cpp +++ b/src/FeaturesAPI/FeaturesAPI_Intersection.cpp @@ -34,13 +34,11 @@ FeaturesAPI_Intersection::FeaturesAPI_Intersection( //================================================================================================== FeaturesAPI_Intersection::FeaturesAPI_Intersection( const std::shared_ptr& theFeature, - const std::list& theObjects, - const std::list& theTools) + const std::list& theObjects) : ModelHighAPI_Interface(theFeature) { if(initialize()) { fillAttribute(theObjects, myobjects); - fillAttribute(theTools, mytools); execute(); } @@ -60,14 +58,6 @@ void FeaturesAPI_Intersection::setObjects(const std::list& theTools) -{ - fillAttribute(theTools, mytools); - - execute(); -} - //================================================================================================== void FeaturesAPI_Intersection::dump(ModelHighAPI_Dumper& theDumper) const { @@ -76,18 +66,15 @@ void FeaturesAPI_Intersection::dump(ModelHighAPI_Dumper& theDumper) const AttributeSelectionListPtr anAttrObjects = aBase->selectionList(FeaturesPlugin_Intersection::OBJECT_LIST_ID()); - AttributeSelectionListPtr anAttrTools = - aBase->selectionList(FeaturesPlugin_Intersection::TOOL_LIST_ID()); theDumper << aBase << " = model.addIntersection(" << aDocName << ", " - << anAttrObjects << ", " << anAttrTools << ")" << std::endl; + << anAttrObjects << ")" << std::endl; } //================================================================================================== IntersectionPtr addIntersection(const std::shared_ptr& thePart, - const std::list& theObjects, - const std::list& theTools) + const std::list& theObjects) { std::shared_ptr aFeature = thePart->addFeature(FeaturesAPI_Intersection::ID()); - return IntersectionPtr(new FeaturesAPI_Intersection(aFeature, theObjects, theTools)); + return IntersectionPtr(new FeaturesAPI_Intersection(aFeature, theObjects)); }