Salome HOME
Issue #601: Impossible to modify segment with constraint
[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_ConstraintRigid.h>
12
13 /** \class   SketchSolver_ConstraintMovement
14  *  \ingroup Plugins
15  *  \brief   Stores data of Rigid (Fixed) constraint for the moved feature only
16  */
17 class SketchSolver_ConstraintMovement : public SketchSolver_ConstraintRigid
18 {
19 private:
20   /// Creates constraint to manage the given constraint from plugin
21   SketchSolver_ConstraintMovement(ConstraintPtr theConstraint)
22     : SketchSolver_ConstraintRigid(theConstraint)
23   {}
24
25 public:
26   /// Creates temporary constraint based on feature
27   SketchSolver_ConstraintMovement(FeaturePtr theFeature);
28
29 protected:
30   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
31   virtual void process();
32
33   /// \brief Generate list of attributes of constraint in order useful for SolveSpace constraints
34   /// \param[out] theValue        numerical characteristic of constraint (e.g. distance)
35   /// \param[out] theAttributes   list of attributes to be filled
36   /// \param[out] theIsFullyMoved shows that the feature is moved, in other case only one point of the feature is shifted
37   virtual void getAttributes(double& theValue, std::vector<Slvs_hEntity>& theAttributes, bool& theIsFullyMoved);
38 };
39
40 #endif