Hopefully before really raymarching testing

This commit is contained in:
Crizomb 2025-09-24 23:26:46 +02:00
parent d2f0abff6a
commit 6ed5b21890
5 changed files with 206 additions and 27 deletions

5
color.go Normal file
View file

@ -0,0 +1,5 @@
package main
type Color interface {
GetColor(Vector3) Vector3
}