adding goat3d to the project
authorJohn Tsiombikas <nuclear@member.fsf.org>
Thu, 30 Mar 2023 21:57:34 +0000 (23:57 +0200)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Thu, 30 Mar 2023 21:57:34 +0000 (23:57 +0200)
commit487d801f62b3f7cea009b5e560cfd06e57170970
tree2c85b000600dfe290dea68f15895927787924e8e
parent103b67f9f1e041dc5f6ffbb59004ebe846e3f3f9
adding goat3d to the project
42 files changed:
Makefile.sgi
libs/Makefile
libs/cgmath/cgmath.h
libs/cgmath/cgmmat.inl
libs/cgmath/cgmmisc.inl
libs/cgmath/cgmquat.inl
libs/cgmath/cgmray.inl
libs/cgmath/cgmvec3.inl
libs/cgmath/cgmvec4.inl
libs/goat3d/COPYING [new file with mode: 0644]
libs/goat3d/COPYING.LESSER [new file with mode: 0644]
libs/goat3d/Makefile [new file with mode: 0644]
libs/goat3d/README.md [new file with mode: 0644]
libs/goat3d/include/goat3d.h [new file with mode: 0644]
libs/goat3d/src/aabox.c [new file with mode: 0644]
libs/goat3d/src/aabox.h [new file with mode: 0644]
libs/goat3d/src/chunk.c [new file with mode: 0644]
libs/goat3d/src/chunk.h [new file with mode: 0644]
libs/goat3d/src/dynarr.c [new file with mode: 0644]
libs/goat3d/src/dynarr.h [new file with mode: 0644]
libs/goat3d/src/extmesh.c [new file with mode: 0644]
libs/goat3d/src/g3danm.c [new file with mode: 0644]
libs/goat3d/src/g3danm.h [new file with mode: 0644]
libs/goat3d/src/g3dscn.c [new file with mode: 0644]
libs/goat3d/src/g3dscn.h [new file with mode: 0644]
libs/goat3d/src/goat3d.c [new file with mode: 0644]
libs/goat3d/src/log.c [new file with mode: 0644]
libs/goat3d/src/log.h [new file with mode: 0644]
libs/goat3d/src/read.c [new file with mode: 0644]
libs/goat3d/src/track.c [new file with mode: 0644]
libs/goat3d/src/track.h [new file with mode: 0644]
libs/goat3d/src/write.c [new file with mode: 0644]
libs/imago/Makefile
libs/treestor/LICENSE [new file with mode: 0644]
libs/treestor/Makefile [new file with mode: 0644]
libs/treestor/README.md [new file with mode: 0644]
libs/treestor/include/treestor.h [new file with mode: 0644]
libs/treestor/src/dynarr.c [new file with mode: 0644]
libs/treestor/src/dynarr.h [new file with mode: 0644]
libs/treestor/src/text.c [new file with mode: 0644]
libs/treestor/src/treestor.c [new file with mode: 0644]
src/scr_game.c