Salome HOME
Issue #532 - 4.13. Partition with splitting-arguments making solids with shared faces
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintRigid.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    SketchSolver_ConstraintRigid.h
4 // Created: 30 Mar 2015
5 // Author:  Artem ZHIDKOV
6
7 #ifndef SketchSolver_ConstraintRigid_H_
8 #define SketchSolver_ConstraintRigid_H_
9
10 #include "SketchSolver.h"
11 #include <SketchSolver_Constraint.h>
12
13 /** \class   SketchSolver_ConstraintRigid
14  *  \ingroup Plugins
15  *  \brief   Stores data of Rigid (Fixed) constraint
16  *
17  *  Rigid constraint may have NULL basic SketchPlugin constraint,
18  *  because the Rigid constraint may be temporary for correct moving of objects
19  */
20 class SketchSolver_ConstraintRigid : public SketchSolver_Constraint
21 {
22 public:
23   /// Creates constraint to manage the given constraint from plugin
24   SketchSolver_ConstraintRigid(ConstraintPtr theConstraint)
25     : SketchSolver_Constraint(theConstraint)
26   {}
27   /// Creates temporary constraint based on feature
28   SketchSolver_ConstraintRigid(FeaturePtr theFeature);
29
30   /// \brief Tries to remove constraint
31   /// \return \c false, if current constraint contains another SketchPlugin constraints (like for multiple coincidence)
32   virtual bool remove(ConstraintPtr theConstraint = ConstraintPtr());
33
34   /// \brief Returns the type of constraint
35   virtual int getType() const
36   { return SLVS_C_WHERE_DRAGGED; }
37
38 protected:
39   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
40   virtual void process();
41
42   /// \brief Generate list of attributes of constraint in order useful for SolveSpace constraints
43   /// \param[out] theValue      numerical characteristic of constraint (e.g. distance)
44   /// \param[out] theAttributes list of attributes to be filled
45   virtual void getAttributes(double& theValue, std::vector<Slvs_hEntity>& theAttributes);
46
47   /// \brief This method is used in derived objects to check consistence of constraint.
48   ///        E.g. the distance between line and point may be signed.
49   virtual void adjustConstraint();
50
51   /// \brief Fixed feature basing on its type
52   void fixFeature();
53
54   /// \brief Fix given point
55   void fixPoint(const Slvs_hEntity& thePointID);
56
57 private:
58   /// \brief Fixing line position (start and end points)
59   void fixLine(const Slvs_Entity& theLine);
60   /// \brief Fixing circle (center and radius)
61   void fixCircle(const Slvs_Entity& theCircle);
62   /// \brief The arc is fixed differently to avoid SolveSpace problems (overconstraint)
63   ///
64   /// There will be fixed start and end points and the radius of the arc.
65   void fixArc(const Slvs_Entity& theArc);
66
67 protected:
68   FeaturePtr myBaseFeature; ///< fixed feature (when it is set, myBaseConstraint should be NULL)
69 };
70
71 #endif