From aa0ba6ed7a014a6b97a4ab9ff30fde7432f18efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Wed, 1 Apr 2026 00:37:25 +0200 Subject: [PATCH] feat(scenes): add materials.lisp --- scenes/materials.lisp | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 scenes/materials.lisp diff --git a/scenes/materials.lisp b/scenes/materials.lisp new file mode 100644 index 0000000..03f4225 --- /dev/null +++ b/scenes/materials.lisp @@ -0,0 +1,37 @@ +(set 'red + (material + (color 1 0 0) + (color 1 0 0) + (color 0.5 0 0) + 50 0.25)) +(set 'blue + (material + (color 0 0 1) + (color 0 0 1) + (color 0 0 0.6) + 50 0.25)) +(set 'green + (material + (color 0 1 0) + (color 0 1 0) + (color 0 0.6 0) + 50 0.25)) +(set 'white + (material + (color 1 1 1) + (color 1 1 1) + (color 0.6 0.6 0.6) + 100 0.5)) +(set 'black + (material + (color 0 0 0) + (color 0 0 0) + (color 0.6 0.6 0.6) + 100 0.5)) + +(set 'dark-mirror + (material + (color 0 0 0) + (color 0 0 0) + (color 0.2 0.2 0.2) + 20 0.6))