41 lines
800 B
C
41 lines
800 B
C
|
/*
|
||
|
* Copyright (c), Recep Aslantas.
|
||
|
*
|
||
|
* MIT License (MIT), http://opensource.org/licenses/MIT
|
||
|
* Full license can be found in the LICENSE file
|
||
|
*/
|
||
|
|
||
|
#ifndef cglm_call_h
|
||
|
#define cglm_call_h
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "cglm.h"
|
||
|
#include "call/vec2.h"
|
||
|
#include "call/vec3.h"
|
||
|
#include "call/vec4.h"
|
||
|
#include "call/mat2.h"
|
||
|
#include "call/mat3.h"
|
||
|
#include "call/mat4.h"
|
||
|
#include "call/affine.h"
|
||
|
#include "call/cam.h"
|
||
|
#include "call/quat.h"
|
||
|
#include "call/euler.h"
|
||
|
#include "call/plane.h"
|
||
|
#include "call/frustum.h"
|
||
|
#include "call/box.h"
|
||
|
#include "call/io.h"
|
||
|
#include "call/project.h"
|
||
|
#include "call/sphere.h"
|
||
|
#include "call/ease.h"
|
||
|
#include "call/curve.h"
|
||
|
#include "call/bezier.h"
|
||
|
#include "call/ray.h"
|
||
|
#include "call/affine2d.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /* cglm_call_h */
|