Salome HOME
Merge branch 'Dev_GroupsRevision'
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintMultiRotation.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef SketchSolver_ConstraintMultiRotation_H_
22 #define SketchSolver_ConstraintMultiRotation_H_
23
24 #include <SketchSolver_ConstraintMulti.h>
25
26 #include "GeomDataAPI_Point2D.h"
27
28 /** \class   SketchSolver_ConstraintMultiRotation
29  *  \ingroup Plugins
30  *  \brief   Convert rotated features to the list of SolveSpace constraints
31  */
32 class SketchSolver_ConstraintMultiRotation : public SketchSolver_ConstraintMulti
33 {
34 public:
35   /// Constructor based on SketchPlugin constraint
36   SketchSolver_ConstraintMultiRotation(ConstraintPtr theConstraint) :
37       SketchSolver_ConstraintMulti(theConstraint)
38   {}
39
40 protected:
41   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
42   virtual void process();
43
44   /// \brief Generate list of rotated entities
45   /// \param[out] theCenter   central point of rotation
46   /// \param[out] theAngle    rotation angle
47   /// \param[out] theFullValue  applying translation using the disstance as a full or single value
48   /// \param[out] theEntities list of base entities
49   void getAttributes(EntityWrapperPtr&            theCenter,
50                      ScalarWrapperPtr&            theAngle,
51                      bool&                        theFullValue,
52                      std::list<EntityWrapperPtr>& theEntities);
53
54   /// \brief This method is used in derived objects to check consistence of constraint.
55   virtual void adjustConstraint();
56
57   /// \brief Update parameters (called from base class)
58   virtual void updateLocal();
59
60 private:
61   /// \brief Convert absolute coordinates to relative coordinates
62   virtual void getRelative(double theAbsX, double theAbsY,
63                            double& theRelX, double& theRelY);
64   /// \brief Convert relative coordinates to absolute coordinates
65   virtual void getAbsolute(double theRelX, double theRelY,
66                            double& theAbsX, double& theAbsY);
67   /// \brief Apply transformation for relative coordinates
68   virtual void transformRelative(double& theX, double& theY);
69
70   /// \brief Returns name of NUMBER_OF_COPIES parameter for corresponding feature
71   virtual const std::string& nameNbObjects();
72
73 private:
74   AttributePoint2DPtr myCenterPointAttribute; ///< a center of rotation
75   ScalarWrapperPtr    myAngle;                ///< angle of rotation
76
77   double myCenterCoord[2]; ///< coordinates of rotation center
78   double myRotationVal[2]; ///< sinus and cosine of rotation angle
79 };
80
81 #endif