X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintDistance.h;h=80a6fb5e359fa266affa436fe6f676d8092a5971;hb=4f565b2204d3fba046aa8c851abada2a5a17bf6c;hp=8c3a7ea5c5d663b5621212b3dd791b3193d33df7;hpb=dd7831bb460da23992f929cebffddfb653e7c5d5;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintDistance.h b/src/SketchSolver/SketchSolver_ConstraintDistance.h index 8c3a7ea5c..80a6fb5e3 100644 --- a/src/SketchSolver/SketchSolver_ConstraintDistance.h +++ b/src/SketchSolver/SketchSolver_ConstraintDistance.h @@ -17,28 +17,30 @@ class SketchSolver_ConstraintDistance : public SketchSolver_Constraint { public: + /// Constructor based on SketchPlugin constraint SketchSolver_ConstraintDistance(ConstraintPtr theConstraint) : - SketchSolver_Constraint(theConstraint), myType(SLVS_C_UNKNOWN) + SketchSolver_Constraint(theConstraint), + myIsNegative(false) {} /// \brief Update constraint - virtual void update(ConstraintPtr theConstraint = ConstraintPtr()); - - virtual int getType() const - {return myType; } + virtual void update(); protected: - /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints - virtual void process(); + /// \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& theAttributes); /// \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) + + /// \c true, if the point if placed rightside of line direction (SLVS_C_PT_LINE_DISTANCE only) + bool myIsNegative; }; #endif