curve: cubic hermite intrpolation

This commit is contained in:
Recep Aslantas
2019-01-29 22:17:44 +03:00
parent 1e121a4855
commit 7848dda1dd
7 changed files with 102 additions and 12 deletions

View File

@@ -58,7 +58,8 @@ cglm_HEADERS = include/cglm/version.h \
include/cglm/project.h \
include/cglm/sphere.h \
include/cglm/ease.h \
include/cglm/curve.h
include/cglm/curve.h \
include/cglm/bezier.h
cglm_calldir=$(includedir)/cglm/call
cglm_call_HEADERS = include/cglm/call/mat4.h \
@@ -76,7 +77,8 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \
include/cglm/call/project.h \
include/cglm/call/sphere.h \
include/cglm/call/ease.h \
include/cglm/call/curve.h
include/cglm/call/curve.h \
include/cglm/call/bezier.h
cglm_simddir=$(includedir)/cglm/simd
cglm_simd_HEADERS = include/cglm/simd/intrin.h \
@@ -112,7 +114,8 @@ libcglm_la_SOURCES=\
src/project.c \
src/sphere.c \
src/ease.c \
src/curve.c
src/curve.c \
src/bezier.c
test_tests_SOURCES=\
test/src/test_common.c \
@@ -126,7 +129,8 @@ test_tests_SOURCES=\
test/src/test_vec4.c \
test/src/test_vec3.c \
test/src/test_mat3.c \
test/src/test_affine.c
test/src/test_affine.c \
test/src/test_bezier.c
all-local:
sh ./post-build.sh