Salome HOME
Union of validator and filter functionalities.
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintHorizontal.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:    SketchPlugin_ConstraintHorizontal.cpp
4 // Created: 16 Mar 2015
5 // Author:  Artem ZHIDKOV
6
7 #include "SketchPlugin_ConstraintHorizontal.h"
8
9 #include <ModelAPI_AttributeDouble.h>
10 #include <ModelAPI_Data.h>
11 #include <ModelAPI_ResultConstruction.h>
12
13 #include <SketchPlugin_Line.h>
14 #include <SketchPlugin_Sketch.h>
15
16 #include <SketcherPrs_Factory.h>
17
18 #include <Config_PropManager.h>
19
20 SketchPlugin_ConstraintHorizontal::SketchPlugin_ConstraintHorizontal()
21 {
22 }
23
24 void SketchPlugin_ConstraintHorizontal::initAttributes()
25 {
26   data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::type());
27 }
28
29 void SketchPlugin_ConstraintHorizontal::execute()
30 {
31 }
32
33 AISObjectPtr SketchPlugin_ConstraintHorizontal::getAISObject(AISObjectPtr thePrevious)
34 {
35   if (!sketch())
36     return thePrevious;
37
38   AISObjectPtr anAIS = thePrevious;
39   if (!anAIS) {
40     anAIS = SketcherPrs_Factory::horisontalConstraint(this, sketch()->coordinatePlane());
41   }
42   return anAIS;
43 }
44
45