X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintMultiRotation.h;h=eb00cc6d858ce8a3a3dad225a53a5da58d2ec1ca;hb=97c06c5cd9fc736f9b5a1dacde369a9d7b5be703;hp=f6b8ed0728a692a0ef42e20966a07e16004990e5;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h b/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h index f6b8ed072..eb00cc6d8 100644 --- a/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h +++ b/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2019 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 @@ -12,9 +12,9 @@ // // 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef SketchSolver_ConstraintMultiRotation_H_ @@ -41,13 +41,15 @@ protected: virtual void process(); /// \brief Generate list of rotated entities - /// \param[out] theCenter central point of rotation - /// \param[out] theAngle rotation angle - /// \param[out] theFullValue applying translation using the disstance as a full or single value - /// \param[out] theEntities list of base entities + /// \param[out] theCenter central point of rotation + /// \param[out] theAngle rotation angle + /// \param[out] theFullValue applying translation using the distance as a full or single value + /// \param[out] theReversed rotation angle is negative + /// \param[out] theEntities list of base entities void getAttributes(EntityWrapperPtr& theCenter, ScalarWrapperPtr& theAngle, bool& theFullValue, + bool& theReversed, std::list& theEntities); /// \brief This method is used in derived objects to check consistence of constraint. @@ -72,6 +74,7 @@ private: private: AttributePoint2DPtr myCenterPointAttribute; ///< a center of rotation ScalarWrapperPtr myAngle; ///< angle of rotation + bool myIsRevered; ///< angle of rotation is negative double myCenterCoord[2]; ///< coordinates of rotation center double myRotationVal[2]; ///< sinus and cosine of rotation angle