Salome HOME
Fix errors and adjust unit tests
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintCoincidence.h
index c3f359d73bcc52b51177bcdaf8637b77f7490fe3..4990259e250f8b36c7ef0ed3f1de00898d62ea6f 100644 (file)
@@ -12,6 +12,8 @@
 #include <SketchPlugin_Sketch.h>
 #include <list>
 
+class GeomDataAPI_Point2D;
+
 /** \class SketchPlugin_ConstraintCoincidence
  *  \ingroup Plugins
  *  \brief Feature for creation of a new constraint which defines equivalence of two points
@@ -22,7 +24,7 @@
 class SketchPlugin_ConstraintCoincidence : public SketchPlugin_ConstraintBase
 {
  public:
-  /// Parallel constraint kind
+  /// Coincidence constraint kind
   inline static const std::string& ID()
   {
     static const std::string MY_CONSTRAINT_COINCIDENCE_ID("SketchConstraintCoincidence");
@@ -44,6 +46,17 @@ class SketchPlugin_ConstraintCoincidence : public SketchPlugin_ConstraintBase
   /// \brief Request for initialization of data model of the feature: adding all attributes
   SKETCHPLUGIN_EXPORT virtual void initAttributes();
 
+  /// Returns coincident feature if there is a coincidence built on the given features
+  /// \param theFeature1 the first feature
+  /// \param theFeature2 the second feature
+  static FeaturePtr findCoincidenceFeature(const FeaturePtr& theFeature1,
+                                           const FeaturePtr& theFeature2);
+
+  /// Returns point of coincidence feature
+  /// \param theFeature a coincidence feature
+  /// \return point 2d attribute. Coincidence always has at least one point 2d attribute
+  static std::shared_ptr<GeomDataAPI_Point2D> getPoint(const FeaturePtr& theFeature);
+
   /// \brief Use plugin manager for features creation
   SketchPlugin_ConstraintCoincidence();
 };