docs: fix mat#x# comments and documentation

Signed-off-by: Vincent Davis Jr <vince@underview.tech>
This commit is contained in:
Vincent Davis Jr
2023-07-16 15:31:38 -04:00
parent 8966f296ac
commit 82892085b3
13 changed files with 19 additions and 19 deletions

View File

@@ -199,7 +199,7 @@ typedef union mat2s {
typedef union mat2x3s {
mat2x3 raw;
vec3s col[2]; /* col -> row | [row (2), col (3)] */
vec3s col[2]; /* [col (2), row (3)] */
#if CGLM_USE_ANONYMOUS_STRUCT
struct {
float m00, m01, m02;
@@ -210,7 +210,7 @@ typedef union mat2x3s {
typedef union mat2x4s {
mat2x4 raw;
vec4s col[2]; /* col -> row | [row (2), col (4)] */
vec4s col[2]; /* [col (2), row (4)] */
#if CGLM_USE_ANONYMOUS_STRUCT
struct {
float m00, m01, m02, m03;
@@ -233,7 +233,7 @@ typedef union mat3s {
typedef union mat3x2s {
mat3x2 raw;
vec2s col[3]; /* col -> row | [row (3), col (2)] */
vec2s col[3]; /* [col (3), row (2)] */
#if CGLM_USE_ANONYMOUS_STRUCT
struct {
float m00, m01;