1
0
Fork 0
mirror of https://git.coom.tech/drummyfish/raycastlib.git synced 2025-01-06 03:46:24 +01:00
This commit is contained in:
Miloslav Číž 2020-06-21 17:40:17 +02:00
parent e32701e976
commit f658d331ec
2 changed files with 3 additions and 1 deletions

View file

@ -4,6 +4,8 @@ Public domain ray casting library for (not only) resource-limited computers.
If you like this, you may also like my similar project: [small3dlib](https://gitlab.com/drummyfish/small3dlib). These two libraries can very easily be combined together -- here is a proof-of-concept gif (environment rendered with raycastlib, cubes with small3dlib):
I am currently making a full suckless game with this library: [Anarch](https://gitlab.com/drummyfish/sucklessfps).
![](https://gitlab.com/drummyfish/small3dlib/raw/master/media/rcl_plus_s3l.gif)
eye-candy previews

View file

@ -24,4 +24,4 @@ compiler=gcc
echo "making:" ${compiler} ${flags}
${compiler} ${flags} > /dev/null 2>&1 && ./$1
${compiler} ${flags} && ./$1