[╯°□°]╯︵┻━┻
Goldberg Simulator 20000
|
00001 #ifndef PRJ_RAND_H 00002 #define PRJ_RAND_H 00003 00004 #include <stdio.h> 00005 #include <stdlib.h> 00006 #include <time.h> //Ne pas oublier d'inclure le fichier time.h 00007 #include "Vect.h" 00008 00009 #include <iostream> 00010 #include <sstream> 00011 00012 using namespace std; 00013 00014 double rand(double const& a, double const& b); 00015 00016 Vect randVect(double nb, size_t dim=3); 00017 00018 //other random stuff 00019 string toString(double); 00020 00021 #endif //PRJ_RAND_H