12 lines
258 B
C
12 lines
258 B
C
#ifndef INCLUDED_UTILS_H
|
|
#define INCLUDED_UTILS_H
|
|
|
|
double degrees_to_radians(double degrees);
|
|
|
|
double random_double(void);
|
|
double random_double_in_range(double min, double max);
|
|
|
|
double clamp(double x, double min, double max);
|
|
|
|
#endif /* INCLUDED_UTILS_H */
|