boilerplate

This commit is contained in:
Marcin
2025-01-14 17:32:46 +00:00
parent a4cd7e008d
commit 3e52d90ecb
9 changed files with 80 additions and 0 deletions

15
src/perlin.c Normal file
View File

@@ -0,0 +1,15 @@
/*
* Copyright (c), Recep Aslantas.
*
* MIT License (MIT), http://opensource.org/licenses/MIT
* Full license can be found in the LICENSE file
*/
#include "../include/cglm/cglm.h"
#include "../include/cglm/call.h"
CGLM_EXPORT
float
glmc_perlin(vec4 p) {
return glm_perlin(p);
}