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/struct.h | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 include/cglm/struct.h (limited to 'include/cglm/struct.h') diff --git a/include/cglm/struct.h b/include/cglm/struct.h new file mode 100644 index 0000000..31ca4e2 --- /dev/null +++ b/include/cglm/struct.h @@ -0,0 +1,50 @@ +/* + * Copyright (c), Recep Aslantas. + * + * MIT License (MIT), http://opensource.org/licenses/MIT + * Full license can be found in the LICENSE file + */ + +#ifndef cglm_structs_h +#define cglm_structs_h +#ifdef __cplusplus +extern "C" { +#endif + +#include "cglm.h" +#include "types-struct.h" +#include "struct/vec2.h" +#include "struct/vec3.h" +#include "struct/vec4.h" +#include "struct/ivec2.h" +#include "struct/ivec3.h" +#include "struct/ivec4.h" +#include "struct/mat2.h" +#include "struct/mat2x3.h" +#include "struct/mat2x4.h" +#include "struct/mat3.h" +#include "struct/mat3x2.h" +#include "struct/mat3x4.h" +#include "struct/mat4.h" +#include "struct/mat4x2.h" +#include "struct/mat4x3.h" +#include "struct/affine.h" +#include "struct/frustum.h" +#include "struct/plane.h" +#include "struct/noise.h" +#include "struct/box.h" +#include "struct/color.h" +#include "struct/io.h" +#include "struct/cam.h" +#include "struct/quat.h" +#include "struct/euler.h" +#include "struct/project.h" +#include "struct/sphere.h" +#include "struct/curve.h" +#include "struct/affine2d.h" +#include "struct/ray.h" + +#ifdef __cplusplus +} +#endif +#endif /* cglm_structs_h */ -- cgit