sphere and aabb

This commit is contained in:
Recep Aslantas
2018-05-30 23:42:22 +03:00
parent 3dc9070909
commit 720b617ee0
10 changed files with 235 additions and 4 deletions

View File

@@ -55,7 +55,8 @@ cglm_HEADERS = include/cglm/version.h \
include/cglm/frustum.h \
include/cglm/box.h \
include/cglm/color.h \
include/cglm/project.h
include/cglm/project.h \
include/cglm/sphere.h
cglm_calldir=$(includedir)/cglm/call
cglm_call_HEADERS = include/cglm/call/mat4.h \
@@ -70,7 +71,8 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \
include/cglm/call/plane.h \
include/cglm/call/frustum.h \
include/cglm/call/box.h \
include/cglm/call/project.h
include/cglm/call/project.h \
include/cglm/call/sphere.h
cglm_simddir=$(includedir)/cglm/simd
cglm_simd_HEADERS = include/cglm/simd/intrin.h
@@ -101,7 +103,8 @@ libcglm_la_SOURCES=\
src/plane.c \
src/frustum.c \
src/box.c \
src/project.c
src/project.c \
src/sphere.c
test_tests_SOURCES=\
test/src/test_common.c \