mirror of
https://github.com/recp/cglm.git
synced 2025-12-26 02:25:02 +00:00
* create helpers macro which defines corner index * func for get bounding box frustum * add missing source to make file * add more desc to glm_frustum_corners
26 lines
443 B
C
26 lines
443 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_h
|
|
#define cglm_h
|
|
|
|
#include "common.h"
|
|
#include "vec3.h"
|
|
#include "vec4.h"
|
|
#include "mat4.h"
|
|
#include "mat3.h"
|
|
#include "affine.h"
|
|
#include "cam.h"
|
|
#include "frustum.h"
|
|
#include "quat.h"
|
|
#include "euler.h"
|
|
#include "plane.h"
|
|
#include "util.h"
|
|
#include "io.h"
|
|
|
|
#endif /* cglm_h */
|