Salome HOME
Issue #839 Selection of Part sub-results
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintDistance.h
index ff594c10cfc7c13577b6ae9feebcb8feb947f780..affcc34ec768f1d1d9da115223eea70e5cd78821 100644 (file)
@@ -18,9 +18,14 @@ class SketchSolver_ConstraintDistance : public SketchSolver_Constraint
 {
 public:
   SketchSolver_ConstraintDistance(ConstraintPtr theConstraint) :
-      SketchSolver_Constraint(theConstraint), myType(SLVS_C_UNKNOWN)
+      SketchSolver_Constraint(theConstraint),
+      myType(SLVS_C_UNKNOWN),
+      myIsNegative(false)
   {}
 
+  /// \brief Update constraint
+  virtual void update(ConstraintPtr theConstraint = ConstraintPtr());
+
   virtual int getType() const
   {return myType; }
 
@@ -28,8 +33,14 @@ protected:
   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
   virtual void process();
 
+  /// \brief This method is used in derived objects to check consistence of constraint.
+  ///        E.g. the distance between line and point may be signed.
+  virtual void adjustConstraint();
+
 private:
   int myType; ///< type of constraint (applicable: SLVS_C_PT_PT_DISTANCE, SLVS_C_PT_LINE_DISTANCE)
+  double myPrevValue; ///< previous value of distance (for correct calculation of a distance sign)
+  bool myIsNegative;  ///< \c true, if the point if placed rightside of line direction (SLVS_C_PT_LINE_DISTANCE only)
 };
 
 #endif