Salome HOME
Add ExchangeAPI, fillAttribute in ModelHighAPI_Tools, ModelHighAPI_Selection and...
[modules/shaper.git] / src / GeomAPI / GeomAPI_Dir2d.h
index 906e1af0f6a82ce44a22c37e8ba81582ca231780..2e8cc227edcd8b3dee098e78d33de18f7322118b 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_Dir2d.hxx
 // Created:     23 Apr 2014
 // Author:      Mikhail PONIKAROV
@@ -6,7 +8,7 @@
 #define GeomAPI_Dir2d_H_
 
 #include <GeomAPI_Interface.h>
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class GeomAPI_XY;
 
@@ -15,26 +17,40 @@ class GeomAPI_XY;
  * \brief 2D direction defined by three normalized coordinates
  */
 
-class GEOMAPI_EXPORT GeomAPI_Dir2d : public GeomAPI_Interface
+class GeomAPI_Dir2d : public GeomAPI_Interface
 {
  public:
   /// Creation of direction by coordinates
+  GEOMAPI_EXPORT 
   GeomAPI_Dir2d(const double theX, const double theY);
   /// Creation of direction by coordinates
-  GeomAPI_Dir2d(const boost::shared_ptr<GeomAPI_XY>& theCoords);
+  GEOMAPI_EXPORT 
+  GeomAPI_Dir2d(const std::shared_ptr<GeomAPI_XY>& theCoords);
 
   /// returns X coordinate
+  GEOMAPI_EXPORT 
   double x() const;
   /// returns Y coordinate
+  GEOMAPI_EXPORT 
   double y() const;
 
   /// returns coordinates of the direction
-  const boost::shared_ptr<GeomAPI_XY> xy();
+  GEOMAPI_EXPORT 
+  const std::shared_ptr<GeomAPI_XY> xy();
+
+  /// inverses the direction
+  GEOMAPI_EXPORT void reverse();
 
   /// result is a scalar product of directions
-  double dot(const boost::shared_ptr<GeomAPI_Dir2d>& theArg) const;
+  GEOMAPI_EXPORT 
+  double dot(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
   /// result is a cross product of two directions
-  double cross(const boost::shared_ptr<GeomAPI_Dir2d>& theArg) const;
+  GEOMAPI_EXPORT 
+  double cross(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
+
+  /// calculates angle between two directions
+  GEOMAPI_EXPORT 
+  double angle(const std::shared_ptr<GeomAPI_Dir2d>& theArg) const;
 };
 
 #endif