Salome HOME
Create Presentation for rigid constraint
[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
20 GeomAPI_Pnt2d::GeomAPI_Pnt2d(const boost::shared_ptr<GeomAPI_XY>& theCoords)
21     : GeomAPI_Interface(new gp_Pnt2d(theCoords->x(), theCoords->y()))
22 {
23 }
24
25 double GeomAPI_Pnt2d::x() const
26 {
27   return MY_PNT2D->X();
28 }
29
30 double GeomAPI_Pnt2d::y() const
31 {
32   return MY_PNT2D->Y();
33 }
34
35 void GeomAPI_Pnt2d::setX(const double theX)
36 {
37   return MY_PNT2D->SetX(theX);
38 }
39
40 void GeomAPI_Pnt2d::setY(const double theY)
41 {
42   return MY_PNT2D->SetY(theY);
43 }
44
45 boost::shared_ptr<GeomAPI_Pnt> GeomAPI_Pnt2d::to3D(const boost::shared_ptr<GeomAPI_Pnt>& theOrigin,
46                                                    const boost::shared_ptr<GeomAPI_Dir>& theDirX,
47                                                    const boost::shared_ptr<GeomAPI_Dir>& theDirY)
48 {
49   boost::shared_ptr<GeomAPI_XYZ> aSum = theOrigin->xyz()->added(theDirX->xyz()->multiplied(x()))
50       ->added(theDirY->xyz()->multiplied(y()));
51
52   return boost::shared_ptr<GeomAPI_Pnt>(new GeomAPI_Pnt(aSum));
53 }
54
55 const boost::shared_ptr<GeomAPI_XY> GeomAPI_Pnt2d::xy()
56 {
57   return boost::shared_ptr<GeomAPI_XY>(new GeomAPI_XY(MY_PNT2D->X(), MY_PNT2D->Y()));
58 }
59
60 double GeomAPI_Pnt2d::distance(const boost::shared_ptr<GeomAPI_Pnt2d>& theOther) const
61 {
62   return MY_PNT2D->Distance(theOther->impl<gp_Pnt2d>());
63 }