Files
cglm/src/noise.c
2025-01-15 14:05:08 +00:00

16 lines
298 B
C

/*
* 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(vec4 p) {
return glm_perlin_vec4(p);
}