]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - src/random.cpp
Abreviado de Claves Variables.
[z.facultad/75.52/treemulator.git] / src / random.cpp
index 90bfaa8791d1ceef3564035fec6500b67b385949..b4f126002a36584111cc06d2ab0510b1d7cc3647 100644 (file)
@@ -61,3 +61,8 @@ void Random::Strings (std::list<std::string> &lst, uint n)
        }
 }
 
+double Random::Double (double min, double max)
+{
+       return min + max * (float)rand () / (RAND_MAX + 1.0f);
+}
+