Files
cglm/include/cglm.h
Recep Aslantas 2e9894b816 versor
2016-09-13 18:18:05 +03:00

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 */