Salome HOME
Issue #1860: fix end lines with spaces
[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   /// \brief Tries to remove constraint
32   /// \return \c false, if current constraint contains another SketchPlugin
33   /// constraints (like for multiple coincidence)
34   virtual bool remove();
35
36 protected:
37   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
38   virtual void process();
39
40   /// \brief Generate list of attributes of constraint in order useful for SolveSpace constraints
41   /// \param[out] theValue        numerical characteristic of constraint (e.g. distance)
42   /// \param[out] theAttributes   list of attributes to be filled
43   /// (list of moved entities or attributes)
44   virtual void getAttributes(ParameterWrapperPtr& theValue,
45                              std::vector<EntityWrapperPtr>& theAttributes);
46
47 private:
48   std::vector<EntityWrapperPtr> myMovedEntities; ///< list of entities that are moved
49 };
50
51 #endif