The Lambda Lab
/
projects
/
raymarcher.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8a71cbeda4c6ebe6cdff34c80af1d600b289c641
[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