mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
add new matrix mat2x4
Initial function being glm_mat2x4_make Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
@@ -208,6 +208,17 @@ typedef union mat2x3s {
|
||||
#endif
|
||||
} mat2x3s;
|
||||
|
||||
typedef union mat2x4s {
|
||||
mat2x4 raw;
|
||||
vec4s col[2]; /* col -> row | [row (2), col (4)] */
|
||||
#if CGLM_USE_ANONYMOUS_STRUCT
|
||||
struct {
|
||||
float m00, m01, m02, m03;
|
||||
float m10, m11, m12, m13;
|
||||
};
|
||||
#endif
|
||||
} mat2x4s;
|
||||
|
||||
typedef union mat3s {
|
||||
mat3 raw;
|
||||
vec3s col[3];
|
||||
|
||||
Reference in New Issue
Block a user