X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintCoincidence.h;h=4990259e250f8b36c7ef0ed3f1de00898d62ea6f;hb=30c051954fe28016ee74f7aaf851dbdec4249d8c;hp=ffc4ce1b9e1f0fb1ef8986ba91c0a38d453913fc;hpb=392ee1c88d2ef48e646a4d211e63fae0dedf3af5;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h b/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h index ffc4ce1b9..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 @@ -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(); };