mirror of
https://github.com/recp/cglm.git
synced 2026-08-30 18:52:49 -05:00
a97af506ce
- use relative includes for cglm/call/ headers - explicitly include stdio in cglm/call/io.h - update call documentation
32 lines
559 B
C
32 lines
559 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_view_rh_no_h
|
|
#define cglmc_view_rh_no_h
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "../../common.h"
|
|
|
|
CGLM_EXPORT
|
|
void
|
|
glmc_lookat_rh_no(vec3 eye, vec3 center, vec3 up, mat4 dest);
|
|
|
|
CGLM_EXPORT
|
|
void
|
|
glmc_look_rh_no(vec3 eye, vec3 dir, vec3 up, mat4 dest);
|
|
|
|
CGLM_EXPORT
|
|
void
|
|
glmc_look_anyup_rh_no(vec3 eye, vec3 dir, mat4 dest);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* cglmc_view_rh_no_h */
|