bounding box

This commit is contained in:
Recep Aslantas
2018-01-18 16:36:58 +03:00
parent da8bbc6536
commit 8b2c74b0cc
9 changed files with 223 additions and 3 deletions

View File

@@ -52,7 +52,8 @@ cglm_HEADERS = include/cglm/version.h \
include/cglm/quat.h \
include/cglm/affine-mat.h \
include/cglm/plane.h \
include/cglm/frustum.h
include/cglm/frustum.h \
include/cglm/box.h
cglm_calldir=$(includedir)/cglm/call
cglm_call_HEADERS = include/cglm/call/mat4.h \
@@ -65,7 +66,8 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \
include/cglm/call/quat.h \
include/cglm/call/euler.h \
include/cglm/call/plane.h \
include/cglm/call/frustum.h
include/cglm/call/frustum.h \
include/cglm/call/box.h
cglm_simddir=$(includedir)/cglm/simd
cglm_simd_HEADERS = include/cglm/simd/intrin.h
@@ -94,7 +96,8 @@ libcglm_la_SOURCES=\
src/mat3.c \
src/mat4.c \
src/plane.c \
src/frustum.c
src/frustum.c \
src/box.c
test_tests_SOURCES=\
test/src/test_common.c \