]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/SketchPlugin/SketchPlugin_Sketch.h
Salome HOME
Geom attribute: Point
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Sketch.h
index ed936bde999554a599a9a99dfd9994c3d98ec7f0..ec81fe62e6fc0fe82744163617d108a253e193c8 100644 (file)
@@ -7,11 +7,16 @@
 
 #include "SketchPlugin.h"
 #include <SketchPlugin_Feature.h>
-
 #include <list>
 
-/// part reference attribute
-const std::string PART_ATTR_DOC_REF = "SketchDocument";
+/// Coefficient A of the sketch plane (Ax+By+Cz+D=0)
+const std::string SKETCH_ATTR_PLANE_A("PlaneA");
+/// Coefficient B of the sketch plane
+const std::string SKETCH_ATTR_PLANE_B("PlaneB");
+/// Coefficient C of the sketch plane
+const std::string SKETCH_ATTR_PLANE_C("PlaneC");
+/// Coefficient D of the sketch plane
+const std::string SKETCH_ATTR_PLANE_D("PlaneD");
 
 /**\class SketchPlugin_Sketch
  * \ingroup DataModel
@@ -47,7 +52,6 @@ protected:
   /// \param theShapes the list of result shapes
   void addPlane(double theX, double theY, double theZ,
                 std::list<boost::shared_ptr<GeomAPI_Shape> >& theShapes) const;
-
 };
 
 #endif