1 /*
2  * Copyright (c), Recep Aslantas.
3  *
4  * MIT License (MIT), http://opensource.org/licenses/MIT
5  * Full license can be found in the LICENSE file
6  */
7 
8 #ifndef cglmc_plane_h
9 #define cglmc_plane_h
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #include "../cglm.h"
15 
16 CGLM_EXPORT
17 void
18 glmc_plane_normalize(vec4 plane);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 #endif /* cglmc_plane_h */
24