Salome HOME
First phase of SketchSolver refactoring
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintLength.h
index f9c0da65ce54dd706629d07028d7447e50cf4c88..0899d8b732419e138208af79263d0f7c56abc20c 100644 (file)
@@ -22,16 +22,11 @@ public:
       SketchSolver_Constraint(theConstraint)
   {}
 
-  virtual int getType() const
-  { return SLVS_C_PT_PT_DISTANCE; }
-
 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();
+  /// \brief Generate list of attributes of constraint in order useful for constraints
+  /// \param[out] theValue      numerical characteristic of constraint (e.g. distance)
+  /// \param[out] theAttributes list of attributes to be filled
+  virtual void getAttributes(double& theValue, std::vector<EntityWrapperPtr>& theAttributes);
 };
 
 #endif