testing raylib 3d plane

This commit is contained in:
2024-12-24 15:08:39 +03:00
parent 6dafffb522
commit c42b641213
2 changed files with 114 additions and 0 deletions

6
3d-test/Makefile Normal file
View File

@@ -0,0 +1,6 @@
SRC := ../util.c plane.c
OUT := plane
LIBS := -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
make all:
gcc $(SRC) -o $(OUT) $(LIBS)