]> SALOME platform Git repositories - modules/shaper.git/blob - src/GeomAPI/GeomAPI_Pnt2d.cpp
Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
[modules/shaper.git] / src / GeomAPI / GeomAPI_Pnt2d.cpp
1 // File:        GeomAPI_Pnt2d.cpp
2 // Created:     29 May 2014
3 // Author:      Artem ZHIDKOV
4
5 #include<GeomAPI_Pnt2d.h>
6 #include<GeomAPI_XY.h>
7 #include<GeomAPI_XYZ.h>
8 #include<GeomAPI_Pnt.h>
9 #include<GeomAPI_Dir.h>
10
11 #include<gp_Pnt2d.hxx>
12
13 #define MY_PNT2D static_cast<gp_Pnt2d*>(myImpl)
14
15 GeomAPI_Pnt2d::GeomAPI_Pnt2d(const double theX, const double theY)
16   : GeomAPI_Interface(new gp_Pnt2d(theX, theY))
17 {}
18
19 GeomAPI_Pnt2d::GeomAPI_Pnt2d(const boost::shared_ptr<GeomAPI_XY>& theCoords)
20   : GeomAPI_Interface(new gp_Pnt2d(theCoords->x(), theCoords->y()))
21 {}
22
23 double GeomAPI_Pnt2d::x() const
24 {
25   return MY_PNT2D->X();
26 }
27
28 double GeomAPI_Pnt2d::y() const
29 {
30   return MY_PNT2D->Y();
31 }
32
33 void GeomAPI_Pnt2d::setX(const double theX)
34 {
35   return MY_PNT2D->SetX(theX);
36 }
37
38 void GeomAPI_Pnt2d::setY(const double theY)
39 {
40   return MY_PNT2D->SetY(theY);
41 }
42
43 boost::shared_ptr<GeomAPI_Pnt> GeomAPI_Pnt2d::to3D(const boost::shared_ptr<GeomAPI_Pnt>& theOrigin,
44                                                    const boost::shared_ptr<GeomAPI_Dir>& theDirX,
45                                                    const boost::shared_ptr<GeomAPI_Dir>& theDirY)
46 {
47   boost::shared_ptr<GeomAPI_XYZ> aSum = theOrigin->xyz()->added(
48     theDirX->xyz()->multiplied(x()))->added(theDirY->xyz()->multiplied(y()));
49
50   return boost::shared_ptr<GeomAPI_Pnt>(new GeomAPI_Pnt(aSum));
51 }
52
53 const boost::shared_ptr<GeomAPI_XY> GeomAPI_Pnt2d::xy()
54 {
55   return boost::shared_ptr<GeomAPI_XY>(new GeomAPI_XY(MY_PNT2D->X(), MY_PNT2D->Y()));
56 }
57
58 double GeomAPI_Pnt2d::distance(const boost::shared_ptr<GeomAPI_Pnt2d>& theOther) const
59 {
60   return MY_PNT2D->Distance(theOther->impl<gp_Pnt2d>());
61 }