From 118980e02e59ff31871df59dce257075394f3533 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sun, 25 Jan 2026 15:10:37 -0600 Subject: wip --- include/cglm/cglm.h | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 include/cglm/cglm.h (limited to 'include/cglm/cglm.h') diff --git a/include/cglm/cglm.h b/include/cglm/cglm.h new file mode 100644 index 0000000..3532830 --- /dev/null +++ b/include/cglm/cglm.h @@ -0,0 +1,48 @@ +/* + * Copyright (c), Recep Aslantas. + * + * MIT License (MIT), http://opensource.org/licenses/MIT + * Full license can be found in the LICENSE file + */ + +#ifndef cglm_h +#define cglm_h + +#include "common.h" +#include "vec2.h" +#include "vec3.h" +#include "vec4.h" +#include "ivec2.h" +#include "ivec3.h" +#include "ivec4.h" +#include "mat4.h" +#include "mat4x2.h" +#include "mat4x3.h" +#include "mat3.h" +#include "mat3x2.h" +#include "mat3x4.h" +#include "mat2.h" +#include "mat2x3.h" +#include "mat2x4.h" +#include "affine.h" +#include "cam.h" +#include "frustum.h" +#include "quat.h" +#include "euler.h" +#include "plane.h" +#include "noise.h" +#include "aabb2d.h" +#include "box.h" +#include "color.h" +#include "util.h" +#include "io.h" +#include "project.h" +#include "sphere.h" +#include "ease.h" +#include "curve.h" +#include "bezier.h" +#include "ray.h" +#include "affine2d.h" +#include "affine2d-post.h" + +#endif /* cglm_h */ -- cgit