Salome HOME
32a2199b8d2b6fe1d8acebfaaf2c9ef0f3d8bb81
[modules/shaper.git] / src / PartSet / PartSet_OperationSketch.cpp
1 // File:        PartSet_OperationSketch.h
2 // Created:     20 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #include <PartSet_OperationSketch.h>
6
7 #include <SketchPlugin_Sketch.h>
8 #include <ModelAPI_Data.h>
9 #include <ModelAPI_AttributeDouble.h>
10 #include <GeomAlgoAPI_FaceBuilder.h>
11 #include <GeomDataAPI_Point.h>
12 #include <GeomDataAPI_Dir.h>
13
14 #include <AIS_Shape.hxx>
15 #include <AIS_ListOfInteractive.hxx>
16
17 #ifdef _DEBUG
18 #include <QDebug>
19 #endif
20
21 using namespace std;
22
23 PartSet_OperationSketch::PartSet_OperationSketch(const QString& theId,
24                                                      QObject* theParent)
25 : PartSet_OperationSketchBase(theId, theParent)
26 {
27 }
28
29 PartSet_OperationSketch::~PartSet_OperationSketch()
30 {
31 }
32
33 int PartSet_OperationSketch::getSelectionMode() const
34 {
35   return TopAbs_FACE;
36 }
37
38 void PartSet_OperationSketch::setSelectedShapes(const NCollection_List<TopoDS_Shape>& theList)
39 {
40   if (theList.IsEmpty())
41     return;
42
43   // get selected shape
44   const TopoDS_Shape& aShape = theList.First();
45   boost::shared_ptr<GeomAPI_Shape> aGShape(new GeomAPI_Shape);
46   aGShape->setImpl(new TopoDS_Shape(aShape));
47
48   // get plane parameters
49   boost::shared_ptr<GeomAPI_Pln> aPlane = GeomAlgoAPI_FaceBuilder::plane(aGShape);
50
51   // set plane parameters to feature
52   boost::shared_ptr<ModelAPI_Data> aData = feature()->data();
53   double anA, aB, aC, aD;
54   aPlane->coefficients(anA, aB, aC, aD);
55
56   boost::shared_ptr<ModelAPI_AttributeDouble> anAttr;
57   /*
58   aData->real(SKETCH_ATTR_PLANE_A)->setValue(anA);
59   aData->real(SKETCH_ATTR_PLANE_B)->setValue(aB);
60   aData->real(SKETCH_ATTR_PLANE_C)->setValue(aC);
61   aData->real(SKETCH_ATTR_PLANE_D)->setValue(aD);
62   */
63   // temporary solution for main planes only
64   boost::shared_ptr<GeomDataAPI_Point> anOrigin = 
65     boost::dynamic_pointer_cast<GeomDataAPI_Point>(aData->attribute(SKETCH_ATTR_ORIGIN));
66   anOrigin->setValue(0, 0, 0);
67   boost::shared_ptr<GeomDataAPI_Dir> aNormal = 
68     boost::dynamic_pointer_cast<GeomDataAPI_Dir>(aData->attribute(SKETCH_ATTR_NORM));
69   aNormal->setValue(anA, aB, aC);
70   boost::shared_ptr<GeomDataAPI_Dir> aDirX = 
71     boost::dynamic_pointer_cast<GeomDataAPI_Dir>(aData->attribute(SKETCH_ATTR_DIRX));
72   aDirX->setValue(aB, aC, anA);
73   boost::shared_ptr<GeomDataAPI_Dir> aDirY = 
74     boost::dynamic_pointer_cast<GeomDataAPI_Dir>(aData->attribute(SKETCH_ATTR_DIRY));
75   aDirY->setValue(aC, anA, aB);
76
77   boost::shared_ptr<GeomAPI_Dir> aDir = aPlane->direction();
78   emit viewerProjectionChange(aDir->x(), aDir->y(), aDir->z());
79
80   //commit();
81   //SketchPlugin_Sketch::setActive(myFeature);
82 }