]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
color range nrn/WIP/Integration_AutoColor
authorNicolas Rechatin <nicolas.rechatin@cea.fr>
Thu, 2 Sep 2021 11:36:16 +0000 (13:36 +0200)
committerNicolas Rechatin <nicolas.rechatin@cea.fr>
Thu, 2 Sep 2021 11:36:16 +0000 (13:36 +0200)
src/ModelAPI/ModelAPI_Tools.cpp
src/ModelAPI/ModelAPI_Tools.h

index 5c4e6eae4aa80da42edc8351203380816712453a..f68fc0d993b96e50841c1f87b48fa2c6513afbc3 100644 (file)
@@ -1185,7 +1185,7 @@ void findRandomColor(std::vector<int>& theValues)
       std::vector<int> aRGBColor;
 
       do {
-        aHSVColor = {rand() % 360 , rand()%(100 - 75 + 1) + 60, rand()%(100 - 60 + 1) + 75};
+        aHSVColor = {rand() % 360 , rand() % (100 - 50 + 1) + 50, rand() % (100 - 50 + 1) + 50};
         aRGBColor = HSVtoRGB(aHSVColor[0], aHSVColor[1], aHSVColor[2]);
         timeout++;
       } while (
index 2e2bbaeb4a930aab2686e22ccf255cb370e4f370..2ae491ce82f7cd9ac5fde34cb78999ca4bb16482 100644 (file)
@@ -50,7 +50,7 @@ MODELAPI_EXPORT std::shared_ptr<GeomAPI_Shape> shape(
 MODELAPI_EXPORT std::string getFeatureError(const std::shared_ptr<ModelAPI_Feature>& theFeature);
 
 /*!
- * Searches for variable with name \param theName in \param theDocument. 
+ * Searches for variable with name \param theName in \param theDocument.
  * If found, set it value in the \param outValue and returns true.
  * theSearcher must be located later in the history than the found variable.
  */