Salome HOME
SketchSolver Refactoring: Eliminate SolveSpace as a sketch solver.
[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   {}
23
24   /// \brief This method is used in derived objects to check consistence of constraint.
25   virtual void adjustConstraint() override;
26
27 protected:
28   /// \brief Generate list of attributes of constraint in order useful for constraints
29   /// \param[out] theValue      numerical characteristic of constraint (e.g. distance)
30   /// \param[out] theAttributes list of attributes to be filled
31   virtual void getAttributes(EntityWrapperPtr&              theValue,
32                              std::vector<EntityWrapperPtr>& theAttributes) override;
33
34 private:
35   int    myType;
36 };
37
38 #endif