Salome HOME
Issue #2101: A point cannot be coincident to both, X and Y axises
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintDistance.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    SketchSolver_ConstraintDistance.h
4 // Created: 31 Mar 2015
5 // Author:  Artem ZHIDKOV
6
7 #ifndef SketchSolver_ConstraintDistance_H_
8 #define SketchSolver_ConstraintDistance_H_
9
10 #include <SketchSolver_Constraint.h>
11
12 /** \class   SketchSolver_ConstraintDistance
13  *  \ingroup Plugins
14  *  \brief   Convert distance constraint to SolveSpace structure
15  */
16 class SketchSolver_ConstraintDistance : public SketchSolver_Constraint
17 {
18 public:
19   /// Constructor based on SketchPlugin constraint
20   SketchSolver_ConstraintDistance(ConstraintPtr theConstraint) :
21       SketchSolver_Constraint(theConstraint),
22       myIsNegative(false)
23   {}
24
25   /// \brief Update constraint
26   virtual void update();
27
28 protected:
29   /// \brief Generate list of attributes of constraint in order useful for constraints
30   /// \param[out] theValue      numerical characteristic of constraint (e.g. distance)
31   /// \param[out] theAttributes list of attributes to be filled
32   virtual void getAttributes(EntityWrapperPtr&              theValue,
33                              std::vector<EntityWrapperPtr>& theAttributes);
34
35   /// \brief This method is used in derived objects to check consistence of constraint.
36   ///        E.g. the distance between line and point may be signed.
37   virtual void adjustConstraint();
38
39 private:
40   double myPrevValue; ///< previous value of distance (for correct calculation of a distance sign)
41
42   /// \c true, if the point if placed rightside of line direction (SLVS_C_PT_LINE_DISTANCE only)
43   bool myIsNegative;
44 };
45
46 #endif