X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_MultiRotation.h;h=8e8f2b89cda187761059554349541baa2779a58c;hb=1c74a4ef1b175266becd65969077f12af764e7e2;hp=3a1be2088bd46f66a413418e9f465c38c0c055c2;hpb=86469f18d7a0d509914e1fc9ffac53a2393c7776;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_MultiRotation.h b/src/SketchPlugin/SketchPlugin_MultiRotation.h index 3a1be2088..8e8f2b89c 100644 --- a/src/SketchPlugin/SketchPlugin_MultiRotation.h +++ b/src/SketchPlugin/SketchPlugin_MultiRotation.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: SketchPlugin_MultiRotation.h -// Created: 21 Apr 2015 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2017 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 SketchPlugin_MultiRotation_H_ #define SketchPlugin_MultiRotation_H_ @@ -73,6 +87,13 @@ class SketchPlugin_MultiRotation : public SketchPlugin_ConstraintBase return MY_NUMBER_OF_OBJECTS_ID; } + /// Name of the flag to reverse rotation + inline static const std::string& REVERSED_ID() + { + static const std::string MY_REVERSED_ID("MultiRotationReversed"); + return MY_REVERSED_ID; + } + /// \brief Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); @@ -98,6 +119,8 @@ private: // double theCenterX, double theCenterY, double theAngle); bool updateFullAngleValue(); + + bool isUpdatingAngle; }; #endif