X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_XYZ.h;h=38f189db6b3d0c722a8ca6d93ffe4671f0bd8378;hb=73502ac782ffc45a3acf665ded34f582b07ec4d5;hp=12cf7d04a678902b7e1b62d380f2e54a557787fe;hpb=f1cd93fd02a54259f72e3191d037323a496b2bef;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_XYZ.h b/src/GeomAPI/GeomAPI_XYZ.h index 12cf7d04a..38f189db6 100644 --- a/src/GeomAPI/GeomAPI_XYZ.h +++ b/src/GeomAPI/GeomAPI_XYZ.h @@ -15,39 +15,52 @@ * \brief 3 coordinates: they may represent vector or point or something else */ -class GEOMAPI_EXPORT GeomAPI_XYZ : public GeomAPI_Interface +class GeomAPI_XYZ : public GeomAPI_Interface { public: /// Creation by coordinates + GEOMAPI_EXPORT GeomAPI_XYZ(const double theX, const double theY, const double theZ); /// returns X coordinate + GEOMAPI_EXPORT double x() const; /// returns Y coordinate + GEOMAPI_EXPORT double y() const; /// returns Z coordinate + GEOMAPI_EXPORT double z() const; /// sets X coordinate + GEOMAPI_EXPORT void setX(const double theX); /// sets Y coordinate + GEOMAPI_EXPORT void setY(const double theY); /// sets Z coordinate + GEOMAPI_EXPORT void setZ(const double theZ); /// result is sum of coordinates of this and the given argument + GEOMAPI_EXPORT const std::shared_ptr added(const std::shared_ptr& theArg); /// result is difference between coordinates of this and the given argument + GEOMAPI_EXPORT const std::shared_ptr decreased(const std::shared_ptr& theArg); /// result is coordinates multiplied by the argument + GEOMAPI_EXPORT const std::shared_ptr multiplied(const double theArg); /// result is a scalar product of two triplets + GEOMAPI_EXPORT double dot(const std::shared_ptr& theArg) const; /// result is a cross product of two triplets + GEOMAPI_EXPORT const std::shared_ptr cross(const std::shared_ptr& theArg) const; /// Distance between two triplets + GEOMAPI_EXPORT double distance(const std::shared_ptr& theOther) const; };