mirror of
https://github.com/recp/cglm.git
synced 2025-10-04 01:00:46 +00:00
25 lines
384 B
C
25 lines
384 B
C
/*
|
|
* Copyright (c), Recep Aslantas.
|
|
*
|
|
* MIT License (MIT), http://opensource.org/licenses/MIT
|
|
* Full license can be found in the LICENSE file
|
|
*/
|
|
|
|
#ifndef glm_h
|
|
#define glm_h
|
|
|
|
#include "cglm-common.h"
|
|
|
|
typedef float vec3[3];
|
|
typedef float vec4[4];
|
|
|
|
typedef vec3 mat3[3];
|
|
typedef vec4 mat4[4];
|
|
|
|
typedef vec4 versor;
|
|
|
|
#include "cglm-vec.h"
|
|
#include "cglm-mat.h"
|
|
|
|
#endif /* glm_h */
|