X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Tools.h;h=e89a713ce23507f04d22c29243699f2600e14454;hb=5ee0ac732ede71b1a7784be6870c5f21f6782565;hp=f4fc0ebf0152579ea1da16e08680a2ce4f6f3518;hpb=96ff1d1fb2acb842cee193f15492de81060a1d58;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Tools.h b/src/ModelAPI/ModelAPI_Tools.h index f4fc0ebf0..e89a713ce 100644 --- a/src/ModelAPI/ModelAPI_Tools.h +++ b/src/ModelAPI/ModelAPI_Tools.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_Tools.h // Created: 06 Aug 2014 // Author: Vitaly Smetannikov @@ -9,10 +11,25 @@ #include #include -namespace ModelAPI_Tools -{ - /// Returns shape from the given Result object - MODELAPI_EXPORT boost::shared_ptr shape(const ResultPtr& theResult); -}; +#include + +namespace ModelAPI_Tools { +/// Returns shape from the given Result object +MODELAPI_EXPORT std::shared_ptr shape(const ResultPtr& theResult); + +/*! + * Searches for variable with name \param theName in the active document (Part), when + * in the root document (PartSet). If found, set it value in the \param outValue + * and returns true. + */ +MODELAPI_EXPORT bool findVariable(const std::string& theName, double& outValue); + +/*! + * Returns the values of the next random color. The values are in range [0, 255] + * \param theValues a container of component of RGB value: red, green, blue + */ +MODELAPI_EXPORT void findRandomColor(std::vector& theValues); + +} -#endif \ No newline at end of file +#endif