]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketcherPrs/SketcherPrs_Tools.h
Salome HOME
Exclude links to SketchPlugin
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Tools.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Tools.h
4 // Created:     10 March 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef SketcherPrs_Tools_H
8 #define SketcherPrs_Tools_H
9
10 #include "SketcherPrs.h"
11 #include <GeomAPI_Shape.h>
12 #include <GeomAPI_Pnt2d.h>
13 #include <ModelAPI_Object.h>
14 #include <ModelAPI_Feature.h>
15 #include <string>
16
17 class GeomDataAPI_Point2D;
18
19 #define MyTextHeight 20
20
21 namespace SketcherPrs_Tools {
22
23   SKETCHERPRS_EXPORT ObjectPtr getResult(ModelAPI_Feature* theFeature,
24                       const std::string& theAttrName);
25
26   SKETCHERPRS_EXPORT std::shared_ptr<GeomAPI_Shape> getShape(ObjectPtr theObject);
27
28   SKETCHERPRS_EXPORT std::shared_ptr<GeomAPI_Pnt2d> getPoint(ModelAPI_Feature* theFeature,
29                                           const std::string& theAttrName);
30
31   SKETCHERPRS_EXPORT std::shared_ptr<GeomAPI_Pnt2d> getProjectionPoint(
32                         const FeaturePtr theLine,
33                         const std::shared_ptr<GeomAPI_Pnt2d>& thePoint);
34
35   SKETCHERPRS_EXPORT FeaturePtr getFeatureLine(DataPtr theData,
36                                                const std::string& theAttribute);
37
38   /// Obtain the point object from specified constraint parameter
39   SKETCHERPRS_EXPORT std::shared_ptr<GeomDataAPI_Point2D> getFeaturePoint(DataPtr theData,
40                                                        const std::string& theAttribute);
41
42   SKETCHERPRS_EXPORT double getArrowSize();
43
44   SKETCHERPRS_EXPORT void setArrowSize(double theSize);
45 };
46
47 #endif