mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 20:34:58 +00:00
add new matrix mat4x2
Initial function being glm_mat4x2_make Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
@@ -83,6 +83,18 @@ TEST_IMPL(mat4s_zero_init) {
|
||||
TEST_SUCCESS
|
||||
}
|
||||
|
||||
TEST_IMPL(mat4x2s_zero_init) {
|
||||
mat4x2s mat4x2_zero = GLMS_MAT4X2_ZERO_INIT;
|
||||
test_assert_mat4x2_eq_zero(mat4x2_zero.raw);
|
||||
TEST_SUCCESS
|
||||
}
|
||||
|
||||
TEST_IMPL(mat4x2s_zero) {
|
||||
mat4x2s mat4x2_zero = GLMS_MAT4X2_ZERO;
|
||||
test_assert_mat4x2_eq_zero(mat4x2_zero.raw);
|
||||
TEST_SUCCESS
|
||||
}
|
||||
|
||||
TEST_IMPL(quats_zero_init) {
|
||||
versors quat_zero = GLMS_QUAT_IDENTITY_INIT;
|
||||
versor quat_zero_a = GLM_QUAT_IDENTITY_INIT;
|
||||
|
||||
Reference in New Issue
Block a user