mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
add _mul for non-square matrices
This commit is contained in:
@@ -25,3 +25,9 @@ void
|
||||
glmc_mat4x3_make(float * __restrict src, mat4x3 dest) {
|
||||
glm_mat4x3_make(src, dest);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_mat4x3_mul(mat4x3 m1, mat3x4 m2, mat4 dest) {
|
||||
glm_mat4x3_mul(m1, m2, dest);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user