Shifted mandelbulb sdf out to primitives.
[raymarcher.git] / Colours.lua
diff --git a/Colours.lua b/Colours.lua
new file mode 100644 (file)
index 0000000..8a71cbe
--- /dev/null
@@ -0,0 +1,12 @@
+--- Some pre-defined colours
+
+Colours = {
+   red = {1,0,0},
+   green = {0,1,0},
+   blue = {0,0,1},
+   yellow = {1,1,0},
+   magenta = {1,0,1},
+   cyan = {0,1,1}
+}
+
+return Colours