Salome HOME
Issue #273: Add copyright string
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintBase.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:    SketchPlugin_ConstraintBase.cpp
4 // Created: 08 May 2014
5 // Author:  Artem ZHIDKOV
6
7 #include "SketchPlugin_ConstraintBase.h"
8
9 AISObjectPtr SketchPlugin_ConstraintBase::getAISObject(AISObjectPtr thePrevious)
10 {
11   return thePrevious;
12 }
13
14 const void SketchPlugin_ConstraintBase::addSub(const FeaturePtr& theFeature)
15 {
16
17 }
18
19 void SketchPlugin_ConstraintBase::move(const double theDeltaX, const double theDeltaY)
20 {
21
22 }
23
24 double SketchPlugin_ConstraintBase::distanceToPoint(
25     const std::shared_ptr<GeomAPI_Pnt2d>& thePoint)
26 {
27   return 0;
28 }