X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintMultiTranslation.h;h=7c93d6d0e156c29df701e66d74ee16713bd26568;hb=ad6e991b0289e8dc50624c9d45bc35363644c81d;hp=b02551f0762795f54ec2931ea05ea27aa2c38a7b;hpb=3d063c74ca0ff72184f77d74df198c3bf0730aff;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintMultiTranslation.h b/src/SketchSolver/SketchSolver_ConstraintMultiTranslation.h index b02551f07..7c93d6d0e 100644 --- a/src/SketchSolver/SketchSolver_ConstraintMultiTranslation.h +++ b/src/SketchSolver/SketchSolver_ConstraintMultiTranslation.h @@ -8,57 +8,56 @@ #define SketchSolver_ConstraintMultiTranslation_H_ #include "SketchSolver.h" -#include +#include + +#include "GeomDataAPI_Point2D.h" /** \class SketchSolver_ConstraintMultiTranslation * \ingroup Plugins * \brief Convert translated features to the list of SolveSpace constraints */ -class SketchSolver_ConstraintMultiTranslation : public SketchSolver_Constraint +class SketchSolver_ConstraintMultiTranslation : public SketchSolver_ConstraintMulti { public: + /// Constructor based on SketchPlugin constraint SketchSolver_ConstraintMultiTranslation(ConstraintPtr theConstraint) : - SketchSolver_Constraint(theConstraint), - myNumberOfObjects(0), - myNumberOfCopies(0) + SketchSolver_ConstraintMulti(theConstraint) {} - virtual int getType() const - { return SLVS_C_MULTI_TRANSLATION; } - - /// \brief Update constraint - virtual void update(ConstraintPtr theConstraint = ConstraintPtr()); - - /// \brief Tries to remove constraint - /// \return \c false, if current constraint contains another SketchPlugin constraints (like for multiple coincidence) - virtual bool remove(ConstraintPtr theConstraint = ConstraintPtr()); - 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 SolveSpace 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) - { /* do nothing here */ } - /// \brief Generate list of translated entities - /// \param[out] theStartPoint ID of start point of translation - /// \param[out] theEndPoint ID of final point of translation - /// \param[out] thePoints list of IDs of initial points and their translated copies - /// \param[out] theCircular list of IDs of arcs and circles and their copies - void getAttributes(Slvs_hEntity& theStartPoint, Slvs_hEntity& theEndPoint, - std::vector >& thePoints, - std::vector >& theCircular); + /// \param[out] theStartPoint start point of translation + /// \param[out] theEndPoint final point of translation + /// \param[out] theFullValue applying translation using the distance as a full or single value + /// \param[out] theEntities list of base entities + void getAttributes(EntityWrapperPtr& theStartPoint, EntityWrapperPtr& theEndPoint, + bool& theFullValue, std::list& theEntities); /// \brief This method is used in derived objects to check consistence of constraint. virtual void adjustConstraint(); + /// \brief Update parameters (called from base class) + virtual void updateLocal(); + private: - size_t myNumberOfObjects; ///< number of previous initial objects - size_t myNumberOfCopies; ///< number of previous copies of initial objects - Slvs_hEntity myTranslationLine; ///< ID of translation line + /// \brief Convert absolute coordinates to relative coordinates + virtual void getRelative(double theAbsX, double theAbsY, double& theRelX, double& theRelY); + /// \brief Convert relative coordinates to absolute coordinates + virtual void getAbsolute(double theRelX, double theRelY, double& theAbsX, double& theAbsY); + /// \brief Apply transformation for relative coordinates + virtual void transformRelative(double& theX, double& theY); + + /// \brief Returns name of NUMBER_OF_COPIES parameter for corresponding feature + virtual const std::string& nameNbObjects(); + +private: + AttributePoint2DPtr myStartPointAttribute; + AttributePoint2DPtr myEndPointAttribute; + + double myDelta[2]; ///< increment of translation }; #endif