custom_utils.h 273 Bytes
#ifndef __CUSTOM_UTILS_H__
#define __CUSTOM_UTILS_H__
#include "color.h"
#include <math.h>
#include <stdlib.h>


double rand_range(double low, double high);

color_t rand_color(double alpha);

color_t rainbow_color(double n, double m);

#endif // #ifndef __CUSTOM_UTILS_H__