NON WORKING

absoluter clutter beim versuch quads zu implementieren. refactor absolut noetig
This commit is contained in:
any
2026-07-30 22:16:18 +02:00
parent 9681137e5a
commit 91bb170b23
4 changed files with 112 additions and 18 deletions
+15 -1
View File
@@ -33,4 +33,18 @@ struct sphere {
double radius;
RGBA color;
int isLight;
}; typedef struct sphere sphere;
}; typedef struct sphere sphere;
struct plane {
vec3 origin;
vec3 normal;
}; typedef struct plane plane;
struct quad {
vec3 origin;
vec3 v1;
vec3 v2;
vec3 normal;
RGBA color;
int isLight;
}; typedef struct quad quad;