]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchSolver/SketchSolver_ConstraintMultiTranslation.h
Salome HOME
First phase of SketchSolver refactoring
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintMultiTranslation.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    SketchSolver_ConstraintMultiTranslation.h
4 // Created: 1 Apr 2015
5 // Author:  Artem ZHIDKOV
6
7 #ifndef SketchSolver_ConstraintMultiTranslation_H_
8 #define SketchSolver_ConstraintMultiTranslation_H_
9
10 #include "SketchSolver.h"
11 #include <SketchSolver_ConstraintMulti.h>
12
13 /** \class   SketchSolver_ConstraintMultiTranslation
14  *  \ingroup Plugins
15  *  \brief   Convert translated features to the list of SolveSpace constraints
16  */
17 class SketchSolver_ConstraintMultiTranslation : public SketchSolver_ConstraintMulti
18 {
19 public:
20   /// Constructor based on SketchPlugin constraint
21   SketchSolver_ConstraintMultiTranslation(ConstraintPtr theConstraint) :
22       SketchSolver_ConstraintMulti(theConstraint)////,
23 ////      myTranslationLine(SLVS_E_UNKNOWN)
24   {}
25
26 ////  virtual int getType() const
27 ////  { return SLVS_C_MULTI_TRANSLATION; }
28
29 protected:
30   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
31   virtual void process();
32
33   /// \brief Generate list of translated entities
34   /// \param[out] theStartPoint start point of translation
35   /// \param[out] theEndPoint   final point of translation
36   /// \param[out] theEntities   list of entities and their translated copies
37   void getAttributes(EntityWrapperPtr& theStartPoint, EntityWrapperPtr& theEndPoint,
38                      std::list< std::list<EntityWrapperPtr> >& theEntities);
39
40 ////  /// \brief This method is used in derived objects to check consistence of constraint.
41 ////  virtual void adjustConstraint();
42
43   /// \brief Update parameters (called from base class)
44   virtual void updateLocal()
45   {}
46
47 ////private:
48 ////  /// \brief Convert absolute coordinates to relative coordinates
49 ////  virtual void getRelative(double theAbsX, double theAbsY, double& theRelX, double& theRelY);
50 ////  /// \brief Convert relative coordinates to absolute coordinates
51 ////  virtual void getAbsolute(double theRelX, double theRelY, double& theAbsX, double& theAbsY);
52 ////  /// \brief Apply transformation for relative coordinates
53 ////  virtual void transformRelative(double& theX, double& theY);
54
55 private:
56   /// \brief Returns name of NUMBER_OF_COPIES parameter for corresponding feature
57   virtual const std::string& nameNbObjects();
58
59 ////private:
60 ////  Slvs_hEntity myTranslationLine; ///< ID of translation line
61 ////
62 ////  double myDelta[2]; ///< increment of translation
63 };
64
65 #endif