mat4x3: add tables to docs & fix comments

Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
Vincent Davis Jr
2025-04-04 13:22:27 -04:00
parent 214842db27
commit b33e29d50f
5 changed files with 206 additions and 159 deletions

View File

@@ -10,14 +10,14 @@
CGLM_EXPORT
void
glmc_mat4x3_copy(mat4x3 mat, mat4x3 dest) {
glm_mat4x3_copy(mat, dest);
glmc_mat4x3_copy(mat4x3 src, mat4x3 dest) {
glm_mat4x3_copy(src, dest);
}
CGLM_EXPORT
void
glmc_mat4x3_zero(mat4x3 mat) {
glm_mat4x3_zero(mat);
glmc_mat4x3_zero(mat4x3 m) {
glm_mat4x3_zero(m);
}
CGLM_EXPORT
@@ -40,8 +40,8 @@ glmc_mat4x3_mulv(mat4x3 m, vec4 v, vec3 dest) {
CGLM_EXPORT
void
glmc_mat4x3_transpose(mat4x3 m, mat3x4 dest) {
glm_mat4x3_transpose(m, dest);
glmc_mat4x3_transpose(mat4x3 src, mat3x4 dest) {
glm_mat4x3_transpose(src, dest);
}
CGLM_EXPORT