mirror of
https://github.com/recp/cglm.git
synced 2026-06-01 04:20:24 -05:00
a97af506ce
- use relative includes for cglm/call/ headers - explicitly include stdio in cglm/call/io.h - update call documentation
24 lines
368 B
C
24 lines
368 B
C
/*
|
|
* Copyright (c), Recep Aslantas.
|
|
*
|
|
* MIT License (MIT), http://opensource.org/licenses/MIT
|
|
* Full license can be found in the LICENSE file
|
|
*/
|
|
|
|
#ifndef cglmc_curve_h
|
|
#define cglmc_curve_h
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "../common.h"
|
|
|
|
CGLM_EXPORT
|
|
float
|
|
glmc_smc(float s, mat4 m, vec4 c);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* cglmc_curve_h */
|