X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_RevolutionBoolean.cpp;h=217e8ea095e5a8ef4d1341edf3e3d58b7efeaa6b;hb=e67cf69f6b2813a163ad728b0959f5d1930267da;hp=6467924921405829f6b19f38f0e48d30048eabb7;hpb=7ae8f08629e5f99575f3cec07a8b701dd9209591;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_RevolutionBoolean.cpp b/src/FeaturesPlugin/FeaturesPlugin_RevolutionBoolean.cpp index 646792492..217e8ea09 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_RevolutionBoolean.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_RevolutionBoolean.cpp @@ -1,78 +1,43 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: FeaturesPlugin_RevolutionBoolean.h -// Created: 11 June 2015 -// Author: Dmitry Bobylev - -#include - -#include -#include -#include -#include - -#include -#include -#include +// 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 +// + +#include "FeaturesPlugin_RevolutionBoolean.h" //================================================================================================= -void FeaturesPlugin_RevolutionBoolean::initMakeSolidsAttributes() +void FeaturesPlugin_RevolutionBoolean::initAttributes() { - data()->addAttribute(FeaturesPlugin_RevolutionBoolean::AXIS_OBJECT_ID(), ModelAPI_AttributeSelection::typeId()); + FeaturesPlugin_Revolution::initAttributes(); - data()->addAttribute(FROM_OBJECT_ID(), ModelAPI_AttributeSelection::typeId()); - data()->addAttribute(FROM_ANGLE_ID(), ModelAPI_AttributeDouble::typeId()); - - data()->addAttribute(TO_OBJECT_ID(), ModelAPI_AttributeSelection::typeId()); - data()->addAttribute(TO_ANGLE_ID(), ModelAPI_AttributeDouble::typeId()); - - ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), FROM_OBJECT_ID()); - ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), TO_OBJECT_ID()); + initBooleanAttributes(); } //================================================================================================= -ListOfShape FeaturesPlugin_RevolutionBoolean::MakeSolids(const ListOfShape& theFaces) +bool FeaturesPlugin_RevolutionBoolean::makeGeneration(ListOfShape& theBaseShapes, + ListOfMakeShape& theMakeShapes) { - //Getting axis. - std::shared_ptr anAxis; - std::shared_ptr anEdge; - std::shared_ptr anObjRef = selection(FeaturesPlugin_RevolutionBoolean::AXIS_OBJECT_ID()); - if(anObjRef && anObjRef->value() && anObjRef->value()->isEdge()) { - anEdge = std::shared_ptr(new GeomAPI_Edge(anObjRef->value())); - } - if(anEdge) { - anAxis = std::shared_ptr(new GeomAPI_Ax1(anEdge->line()->location(), anEdge->line()->direction())); - } - - // Getting revolution bounding planes. - std::shared_ptr aFromShape; - std::shared_ptr aToShape; - anObjRef = selection(FROM_OBJECT_ID()); - if (anObjRef) { - aFromShape = std::dynamic_pointer_cast(anObjRef->value()); - } - anObjRef = selection(TO_OBJECT_ID()); - if (anObjRef) { - aToShape = std::dynamic_pointer_cast(anObjRef->value()); - } - - // Getting revolution angles. - double aFromAngle = real(FROM_ANGLE_ID())->value(); - double aToAngle = real(TO_ANGLE_ID())->value(); - - // Revol faces. - ListOfShape aRevolutionList; - for(ListOfShape::const_iterator aFacesIt = theFaces.begin(); aFacesIt != theFaces.end(); aFacesIt++) { - std::shared_ptr aBaseShape = *aFacesIt; - GeomAlgoAPI_Revolution aRevolAlgo(aBaseShape, anAxis, aFromShape, aFromAngle, aToShape, aToAngle); - - // Checking that the algorithm worked properly. - if(!aRevolAlgo.isDone() || aRevolAlgo.shape()->isNull() || !aRevolAlgo.isValid()) { - setError("Revolution algorithm failed"); - return ListOfShape(); - } - aRevolutionList.push_back(aRevolAlgo.shape()); - } + return makeRevolutions(theBaseShapes, theMakeShapes); +} - return aRevolutionList; -} \ No newline at end of file +//================================================================================================= +void FeaturesPlugin_RevolutionBoolean::storeGenerationHistory(ResultBodyPtr theResultBody, + const GeomShapePtr theBaseShape, + const std::shared_ptr theMakeShape) +{ + FeaturesPlugin_Revolution::storeGenerationHistory(theResultBody, theBaseShape, theMakeShape); +}