mat4x2: 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 11:11:49 -04:00
parent 4b3e9bb779
commit bdca98ba48
5 changed files with 173 additions and 130 deletions

View File

@@ -10,14 +10,14 @@
CGLM_EXPORT
void
glmc_mat4x2_copy(mat4x2 mat, mat4x2 dest) {
glm_mat4x2_copy(mat, dest);
glmc_mat4x2_copy(mat4x2 src, mat4x2 dest) {
glm_mat4x2_copy(src, dest);
}
CGLM_EXPORT
void
glmc_mat4x2_zero(mat4x2 mat) {
glm_mat4x2_zero(mat);
glmc_mat4x2_zero(mat4x2 m) {
glm_mat4x2_zero(m);
}
CGLM_EXPORT
@@ -40,8 +40,8 @@ glmc_mat4x2_mulv(mat4x2 m, vec4 v, vec2 dest) {
CGLM_EXPORT
void
glmc_mat4x2_transpose(mat4x2 m, mat2x4 dest) {
glm_mat4x2_transpose(m, dest);
glmc_mat4x2_transpose(mat4x2 src, mat2x4 dest) {
glm_mat4x2_transpose(src, dest);
}
CGLM_EXPORT