Salome HOME
Create Presentation for rigid constraint
[modules/shaper.git] / src / GeomAPI / GeomAPI_Pnt.cpp
index 6414a2dc35865a1af49ae8baec9f555b11a3ef31..0455c15134d64eff166f37bdff38ccc3498053e2 100644 (file)
@@ -3,14 +3,21 @@
 // Author:      Mikhail PONIKAROV
 
 #include<GeomAPI_Pnt.h>
+#include<GeomAPI_XYZ.h>
 
 #include<gp_Pnt.hxx>
 
 #define MY_PNT static_cast<gp_Pnt*>(myImpl)
 
 GeomAPI_Pnt::GeomAPI_Pnt(const double theX, const double theY, const double theZ)
-  : GeomAPI_Interface(new gp_Pnt(theX, theY, theZ))
-{}
+    : GeomAPI_Interface(new gp_Pnt(theX, theY, theZ))
+{
+}
+
+GeomAPI_Pnt::GeomAPI_Pnt(const boost::shared_ptr<GeomAPI_XYZ>& theCoords)
+    : GeomAPI_Interface(new gp_Pnt(theCoords->x(), theCoords->y(), theCoords->z()))
+{
+}
 
 double GeomAPI_Pnt::x() const
 {
@@ -41,3 +48,13 @@ void GeomAPI_Pnt::setZ(const double theZ)
 {
   return MY_PNT->SetZ(theZ);
 }
+
+const boost::shared_ptr<GeomAPI_XYZ> GeomAPI_Pnt::xyz()
+{
+  return boost::shared_ptr<GeomAPI_XYZ>(new GeomAPI_XYZ(MY_PNT->X(), MY_PNT->Y(), MY_PNT->Z()));
+}
+
+double GeomAPI_Pnt::distance(const boost::shared_ptr<GeomAPI_Pnt>& theOther) const
+{
+  return MY_PNT->Distance(theOther->impl<gp_Pnt>());
+}