1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
3 // File: SketchPlugin_ConstraintCoincidence.h
4 // Created: 08 May 2014
5 // Author: Artem ZHIDKOV
7 #ifndef SketchPlugin_ConstraintCoincidence_H_
8 #define SketchPlugin_ConstraintCoincidence_H_
10 #include "SketchPlugin.h"
11 #include "SketchPlugin_ConstraintBase.h"
12 #include <SketchPlugin_Sketch.h>
15 /** \class SketchPlugin_ConstraintCoincidence
17 * \brief Feature for creation of a new constraint which defines equivalence of two points
19 * This constraint has two attributes:
20 * SketchPlugin_Constraint::ENTITY_A() and SketchPlugin_Constraint::ENTITY_B()
22 class SketchPlugin_ConstraintCoincidence : public SketchPlugin_ConstraintBase
25 /// Coincidence constraint kind
26 inline static const std::string& ID()
28 static const std::string MY_CONSTRAINT_COINCIDENCE_ID("SketchConstraintCoincidence");
29 return MY_CONSTRAINT_COINCIDENCE_ID;
31 /// \brief Returns the kind of a feature
32 SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
34 static std::string MY_KIND = SketchPlugin_ConstraintCoincidence::ID();
38 /// Returns the AIS preview
39 SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious);
41 /// \brief Creates a new part document if needed
42 SKETCHPLUGIN_EXPORT virtual void execute();
44 /// \brief Request for initialization of data model of the feature: adding all attributes
45 SKETCHPLUGIN_EXPORT virtual void initAttributes();
47 /// \brief Use plugin manager for features creation
48 SketchPlugin_ConstraintCoincidence();