2d: add translate2d and its friends

This commit is contained in:
Recep Aslantas
2020-07-31 11:40:52 +03:00
parent 6dc37f6cc9
commit bb751d32ca
6 changed files with 186 additions and 3 deletions

View File

@@ -65,7 +65,8 @@ cglm_HEADERS = include/cglm/version.h \
include/cglm/curve.h \
include/cglm/bezier.h \
include/cglm/applesimd.h \
include/cglm/ray.h
include/cglm/ray.h \
include/cglm/affine2d.h
cglm_calldir=$(includedir)/cglm/call
cglm_call_HEADERS = include/cglm/call/mat4.h \
@@ -87,7 +88,8 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \
include/cglm/call/ease.h \
include/cglm/call/curve.h \
include/cglm/call/bezier.h \
include/cglm/call/ray.h
include/cglm/call/ray.h \
include/cglm/call/affine2d.h
cglm_simddir=$(includedir)/cglm/simd
cglm_simd_HEADERS = include/cglm/simd/intrin.h \
@@ -151,7 +153,8 @@ libcglm_la_SOURCES=\
src/ease.c \
src/curve.c \
src/bezier.c \
src/ray.c
src/ray.c \
src/affine2d.c
test_tests_SOURCES=\
test/runner.c \