Salome HOME
First phase of SketchSolver refactoring
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintMovement.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    SketchSolver_ConstraintMovement.h
4 // Created: 15 Jun 2015
5 // Author:  Artem ZHIDKOV
6
7 #ifndef SketchSolver_ConstraintMovement_H_
8 #define SketchSolver_ConstraintMovement_H_
9
10 #include "SketchSolver.h"
11 #include <SketchSolver_ConstraintFixed.h>
12
13 /** \class   SketchSolver_ConstraintMovement
14  *  \ingroup Plugins
15  *  \brief   Stores data to the Fixed constraint for the moved feature only
16  */
17 class SketchSolver_ConstraintMovement : public SketchSolver_ConstraintFixed
18 {
19 private:
20   /// Creates constraint to manage the given constraint from plugin
21   SketchSolver_ConstraintMovement(ConstraintPtr theConstraint)
22     : SketchSolver_ConstraintFixed(theConstraint)
23   {}
24
25 public:
26   /// Creates temporary constraint based on feature
27   SketchSolver_ConstraintMovement(FeaturePtr theFeature)
28     : SketchSolver_ConstraintFixed(theFeature)
29   {}
30
31 protected:
32   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
33   virtual void process();
34
35   /// \brief Generate list of attributes of constraint in order useful for SolveSpace constraints
36   /// \param[out] theValue        numerical characteristic of constraint (e.g. distance)
37   /// \param[out] theAttributes   list of attributes to be filled (list of moved entities or attributes)
38   virtual void getAttributes(ParameterWrapperPtr& theValue, std::vector<EntityWrapperPtr>& theAttributes);
39
40 private:
41   std::vector<EntityWrapperPtr> myMovedEntities; ///< list of entities that are moved
42 };
43
44 #endif