X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintCoincidence.h;h=4990259e250f8b36c7ef0ed3f1de00898d62ea6f;hb=30c051954fe28016ee74f7aaf851dbdec4249d8c;hp=c3f359d73bcc52b51177bcdaf8637b77f7490fe3;hpb=d11d4ba5e291b60c458d15e11081515990cc27fe;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h b/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h index c3f359d73..4990259e2 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h @@ -12,6 +12,8 @@ #include #include +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 getPoint(const FeaturePtr& theFeature); + /// \brief Use plugin manager for features creation SketchPlugin_ConstraintCoincidence(); };