5 lines
116 B
C
5 lines
116 B
C
#include "shader.h"
|
|
|
|
Color shader(int index, double time) {
|
|
return hsv_to_color(time * 120 + index * 6, 1, 1);
|
|
} |