X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintAngle.h;h=ce7e5f79542c1eeb5a81b5e41e4153b167cb1de2;hb=0de6abc2ba4932e6c5b52009f62774c68791ccde;hp=d3dd5c8adab1268f4c73c9e352045893fa71509e;hpb=6c4c5bf56e0a0a3de9eb00552a06327c0213614d;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintAngle.h b/src/SketchPlugin/SketchPlugin_ConstraintAngle.h index d3dd5c8ad..ce7e5f795 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintAngle.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintAngle.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: SketchPlugin_ConstraintAngle.h -// Created: 19 August 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_ConstraintAngle_H_ #define SketchPlugin_ConstraintAngle_H_ @@ -48,6 +62,19 @@ class SketchPlugin_ConstraintAngle : public SketchPlugin_ConstraintBase return MY_ANGLE_VALUE_ID; } + /// attribute name indicating the first line is reversed + inline static const std::string& ANGLE_REVERSED_FIRST_LINE_ID() + { + static const std::string MY_ANGLE_REVERSED_ID("AngleReversedLine1"); + return MY_ANGLE_REVERSED_ID; + } + /// attribute name indicating the second line is reversed + inline static const std::string& ANGLE_REVERSED_SECOND_LINE_ID() + { + static const std::string MY_ANGLE_REVERSED_ID("AngleReversedLine2"); + return MY_ANGLE_REVERSED_ID; + } + /// \brief Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); @@ -81,11 +108,12 @@ class SketchPlugin_ConstraintAngle : public SketchPlugin_ConstraintBase /// Converts the angle value according to the current angle type and sketch plane normal. /// The in/out angle is in degree. /// \param theAngle a source for the calculated angle + /// \param isPreviousValueObtuse a flag if obtuse should be processed /// \param a double angle value - double getAngleForType(double theAngle); + double getAngleForType(double theAngle, bool isPreviousValueObtuse = false); /// Update value of VALUE attribute by the combination of the current angle type and angle value - void updateAngleValue(); + void updateConstraintValueByAngleValue(); /// \brief Use plugin manager for features creation SketchPlugin_ConstraintAngle();