X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintBase.h;h=f6f6b07822cee2254a24221a45c956f4a87b401a;hb=74e9ba33303efc2282db1261706e904efa36b255;hp=e08bf7682be26adcfe323dddce57640cabcab29e;hpb=a85c123c5bc7c48588a5cd648110d66ae1544f8c;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintBase.h b/src/SketchPlugin/SketchPlugin_ConstraintBase.h index e08bf7682..f6f6b0782 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintBase.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintBase.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: SketchPlugin_ConstraintBase.h // Created: 08 May 2014 // Author: Artem ZHIDKOV @@ -15,8 +17,7 @@ #include - -/* Description: +/** Description: * Each constraint uses a set of parameters. In the SolveSpace library * these parameters are named "valA", "ptA", "ptB", "entityA", "entityB". * The "ptA" and "ptB" parameters represents a point in the constraint. @@ -29,16 +30,17 @@ * Also the list of possible attributes is provided to simplify assignment. */ +#define SKETCH_DIMENSION_COLOR "64,128,225" + /** \class SketchPlugin_ConstraintBase - * \ingroup DataModel + * \ingroup Plugins * \brief Feature for creation of a new constraint between other features. * Some feature's methods implemented here as dummy to * Base class for all constraints. */ -class SketchPlugin_ConstraintBase: public SketchPlugin_Constraint, - public GeomAPI_IPresentable +class SketchPlugin_ConstraintBase : public SketchPlugin_Constraint, public GeomAPI_IPresentable { -public: + public: /// Returns the AIS preview SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); @@ -53,11 +55,13 @@ public: /// Return the distance between the feature and the point /// \param thePoint the point - virtual double distanceToPoint(const boost::shared_ptr& thePoint); + virtual double distanceToPoint(const std::shared_ptr& thePoint); -protected: + protected: /// \brief Use plugin manager for features creation - SketchPlugin_ConstraintBase() {} + SketchPlugin_ConstraintBase() + { + } }; #endif