mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
add new matrix mat3x4
Initial function being glm_mat3x4_make Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
@@ -243,6 +243,18 @@ typedef union mat3x2s {
|
||||
#endif
|
||||
} mat3x2s;
|
||||
|
||||
typedef union mat3x4s {
|
||||
mat3x4 raw;
|
||||
vec4s col[3]; /* [col (3), row (4)] */
|
||||
#if CGLM_USE_ANONYMOUS_STRUCT
|
||||
struct {
|
||||
float m00, m01, m02, m03;
|
||||
float m10, m11, m12, m13;
|
||||
float m20, m21, m22, m23;
|
||||
};
|
||||
#endif
|
||||
} mat3x4s;
|
||||
|
||||
typedef union CGLM_ALIGN_MAT mat4s {
|
||||
mat4 raw;
|
||||
vec4s col[4];
|
||||
|
||||
Reference in New Issue
Block a user