X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Dir2d.h;h=aafe267ce2b9c7d35ce04ae47345df6ed0eed38e;hb=b9a93c1ac199671649cf2371dfe9fda2bbe65fd0;hp=e31059f44cf904e4d2d990131b8f941fe97a5b62;hpb=2c4f7de06341fa7af89f47ba405fe188f13e3600;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Dir2d.h b/src/GeomAPI/GeomAPI_Dir2d.h index e31059f44..aafe267ce 100644 --- a/src/GeomAPI/GeomAPI_Dir2d.h +++ b/src/GeomAPI/GeomAPI_Dir2d.h @@ -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 -#include +#include class GeomAPI_XY; @@ -15,26 +17,37 @@ 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: + 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& theCoords); + GEOMAPI_EXPORT + GeomAPI_Dir2d(const std::shared_ptr& 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 xy(); + GEOMAPI_EXPORT + const std::shared_ptr xy(); /// result is a scalar product of directions - double dot(const boost::shared_ptr& theArg) const; + GEOMAPI_EXPORT + double dot(const std::shared_ptr& theArg) const; /// result is a cross product of two directions - double cross(const boost::shared_ptr& theArg) const; + GEOMAPI_EXPORT + double cross(const std::shared_ptr& theArg) const; + + /// calculates angle between two directions + GEOMAPI_EXPORT + double angle(const std::shared_ptr& theArg) const; }; #endif