X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=vrtris;a=blobdiff_plain;f=src%2Fcolor.h;fp=src%2Fcolor.h;h=b955b843d20598924debaaf1712063ae291163fd;hp=0000000000000000000000000000000000000000;hb=d6638277efddf2fd47de884af174f907789b82ec;hpb=ce8a093ece30d3ab608a52b0247ad7a195cc0cc8 diff --git a/src/color.h b/src/color.h new file mode 100644 index 0000000..b955b84 --- /dev/null +++ b/src/color.h @@ -0,0 +1,7 @@ +#ifndef COLOR_H_ +#define COLOR_H_ + +void rgb_to_hsv(float r, float g, float b, float *h, float *s, float *v); +void hsv_to_rgb(float h, float s, float v, float *r, float *g, float *b); + +#endif /* COLOR_H_ */