Salome HOME
First phase of SketchSolver refactoring
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintAngle.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    SketchSolver_ConstraintAngle.h
4 // Created: 24 August 2015
5 // Author:  Artem ZHIDKOV
6
7 #ifndef SketchSolver_ConstraintAngle_H_
8 #define SketchSolver_ConstraintAngle_H_
9
10 #include <SketchSolver_Constraint.h>
11
12 /** \class   SketchSolver_ConstraintAngle
13  *  \ingroup Plugins
14  *  \brief   Convert Agnle constraint to SolveSpace structure
15  */
16 class SketchSolver_ConstraintAngle : public SketchSolver_Constraint
17 {
18 public:
19   /// Constructor based on SketchPlugin constraint
20   SketchSolver_ConstraintAngle(ConstraintPtr theConstraint) :
21       SketchSolver_Constraint(theConstraint),
22       myAngle(0.0)
23   {}
24
25   /// \brief This method is used in derived objects to check consistence of constraint.
26   virtual void adjustConstraint();
27
28 protected:
29   /// \brief Generate list of attributes of constraint in order useful for constraints
30   /// \param[out] theValue      numerical characteristic of constraint (e.g. distance)
31   /// \param[out] theAttributes list of attributes to be filled
32   virtual void getAttributes(double& theValue, std::vector<EntityWrapperPtr>& theAttributes);
33
34 private:
35   double myAngle;
36 };
37
38 #endif