X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintMultiRotation.h;h=f2c74237074c3b443b5291cd3186a1ca3dccb693;hb=d5b5ce2284869d8b97ce638502c58c810bbeb0c7;hp=df01392f5624acb19ad080cc5d740e4c308bd2d3;hpb=0a90e07193a237900913ac3eb11cde08526a8964;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h b/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h index df01392f5..f2c742370 100644 --- a/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h +++ b/src/SketchSolver/SketchSolver_ConstraintMultiRotation.h @@ -1,70 +1,84 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SketchSolver_ConstraintMultiRotation.h -// Created: 1 Apr 2015 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #ifndef SketchSolver_ConstraintMultiRotation_H_ #define SketchSolver_ConstraintMultiRotation_H_ -#include "SketchSolver.h" -#include - -#include +#include -typedef std::vector< std::vector > AuxLinesList; +#include "GeomDataAPI_Point2D.h" /** \class SketchSolver_ConstraintMultiRotation * \ingroup Plugins * \brief Convert rotated features to the list of SolveSpace constraints */ -class SketchSolver_ConstraintMultiRotation : public SketchSolver_Constraint +class SketchSolver_ConstraintMultiRotation : public SketchSolver_ConstraintMulti { public: + /// Constructor based on SketchPlugin constraint SketchSolver_ConstraintMultiRotation(ConstraintPtr theConstraint) : - SketchSolver_Constraint(theConstraint), - myNumberOfObjects(0), - myNumberOfCopies(0) + SketchSolver_ConstraintMulti(theConstraint) {} - virtual int getType() const - { return SLVS_C_MULTI_ROTATION; } - - /// \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 rotated entities - /// \param[out] theCenter ID of central point of rotation - /// \param[out] theAngle rotation angle - /// \param[out] thePoints list of IDs of initial points and their rotated copies - /// \param[out] theCircular list of IDs of arcs and circles and their copies - void getAttributes(Slvs_hEntity& theCenter, double& theAngle, - std::vector >& thePoints, - std::vector >& theCircular); + /// \param[out] theCenter central point of rotation + /// \param[out] theAngle rotation angle + /// \param[out] theFullValue applying translation using the distance as a full or single value + /// \param[out] theReversed rotation angle is negative + /// \param[out] theEntities list of base entities + void getAttributes(EntityWrapperPtr& theCenter, + ScalarWrapperPtr& theAngle, + bool& theFullValue, + bool& theReversed, + 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 myRotationCenter; ///< ID of center of rotation - double myAngle; ///< angle of rotation - AuxLinesList myAuxLines; ///< list of auxiliary lines, created to make clear rotation + /// \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 myCenterPointAttribute; ///< a center of rotation + ScalarWrapperPtr myAngle; ///< angle of rotation + bool myIsRevered; ///< angle of rotation is negative + + double myCenterCoord[2]; ///< coordinates of rotation center + double myRotationVal[2]; ///< sinus and cosine of rotation angle }; #endif