mirror of
https://github.com/recp/cglm.git
synced 2026-01-02 13:49:59 +00:00
28 lines
619 B
C
28 lines
619 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/clipspace/view_lh_zo.h"
|
|
#include "../../include/cglm/call/clipspace/view_lh_zo.h"
|
|
|
|
CGLM_EXPORT
|
|
void
|
|
glmc_lookat_lh_zo(vec3 eye, vec3 center, vec3 up, mat4 dest) {
|
|
glm_lookat_lh_zo(eye, center, up, dest);
|
|
}
|
|
|
|
CGLM_EXPORT
|
|
void
|
|
glmc_look_lh_zo(vec3 eye, vec3 dir, vec3 up, mat4 dest) {
|
|
glm_look_lh_zo(eye, dir, up, dest);
|
|
}
|
|
|
|
CGLM_EXPORT
|
|
void
|
|
glmc_look_anyup_lh_zo(vec3 eye, vec3 dir, mat4 dest) {
|
|
glm_look_anyup_lh_zo(eye, dir, dest);
|
|
}
|