Shifted mandelbulb sdf out to primitives.
[raymarcher.git] / Colours.lua
1 --- Some pre-defined colours
2
3 Colours = {
4    red = {1,0,0},
5    green = {0,1,0},
6    blue = {0,0,1},
7    yellow = {1,1,0},
8    magenta = {1,0,1},
9    cyan = {0,1,1}
10 }
11
12 return Colours