X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_CompositeSketch.h;h=72413a03f5c9c3e226b4ab5914ee085a98816c4c;hb=dd140b9ea4a1563b93cd088b3d601e4adc074608;hp=21479418cfb61404446ae00de44042751f71a26e;hpb=bc13ffbc8c0dbdce3805bf9362ee8a3c05adf9b4;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.h b/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.h index 21479418c..72413a03f 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.h +++ b/src/FeaturesPlugin/FeaturesPlugin_CompositeSketch.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: FeaturesPlugin_CompositeSketch.h -// Created: 11 September 2015 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2021 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 FeaturesPlugin_CompositeSketch_H_ #define FeaturesPlugin_CompositeSketch_H_ @@ -40,7 +53,8 @@ public: FEATURESPLUGIN_EXPORT virtual int numberOfSubs(bool forTree = false) const; /// \return the sub-feature by zero-base index. - FEATURESPLUGIN_EXPORT virtual std::shared_ptr subFeature(const int theIndex, bool forTree = false); + FEATURESPLUGIN_EXPORT virtual + std::shared_ptr subFeature(const int theIndex, bool forTree = false); /// \return the sub-feature unique identifier in this composite feature by zero-base index. FEATURESPLUGIN_EXPORT virtual int subFeatureId(const int theIndex) const; @@ -68,9 +82,6 @@ protected: /// \param[in] theIsMakeShells if true make shells from faces with shared edges. void getBaseShapes(ListOfShape& theBaseShapesList, const bool theIsMakeShells = true); - /// Checks make shape algo. - bool isMakeShapeValid(const std::shared_ptr theMakeShape); - /// Stores result of generation. void storeResult(const GeomShapePtr theBaseShape, const std::shared_ptr theMakeShape, @@ -79,17 +90,17 @@ protected: /// Stores generation history. void storeGenerationHistory(ResultBodyPtr theResultBody, const GeomShapePtr theBaseShape, - const std::shared_ptr theMakeShape, - int& theTag); + const std::shared_ptr theMakeShape); - /// Used to store from and to shapes. - void storeShapes(ResultBodyPtr theResultBody, + /// Used to store from and to shapes: generated, or in common modified tag + void storeShapes(const std::shared_ptr theMakeShape, + ResultBodyPtr theResultBody, const GeomAPI_Shape::ShapeType theBaseShapeType, - const std::shared_ptr theMapOfSubShapes, const ListOfShape& theShapes, - const std::string theName, - int& theTag); + const std::string theName); +private: + std::string myCurrentSelectionType; //< type of selection (vertex, edge or face) }; #endif