Salome HOME
Resolve batch runtime errors on debian squeeze
[modules/shaper.git] / src / GeomDataAPI / GeomDataAPI_Point2D.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        GeomDataAPI_Point2D.cpp
4 // Created:     24 Apr 2014
5 // Author:      Mikhail PONIKAROV
6
7
8 #include <GeomDataAPI_Point2D.h>
9
10 void GeomDataAPI_Point2D::move(const double theDeltaX, const double theDeltaY)
11 {
12   setValue(x() + theDeltaX, y() + theDeltaY);
13 }
14
15 std::string GeomDataAPI_Point2D::attributeType()
16 {
17   return typeId();
18 }
19
20 GeomDataAPI_Point2D::GeomDataAPI_Point2D()
21 {
22 }
23
24 GeomDataAPI_Point2D::~GeomDataAPI_Point2D()
25 {
26 }