Subastra
Loading...
Searching...
No Matches
src
mat4.h
Go to the documentation of this file.
1
#ifndef __H__MAT4__
2
#define __H__MAT4__
3
4
#include <string.h>
5
6
// A column-major 4D matrix
7
typedef
struct
{
8
float
data[16];
9
}
mat4
;
10
11
static
mat4
mat4_zero
() {
12
mat4
ret;
13
memset(&ret.
data
, 0,
sizeof
(
float
) * 16);
14
return
ret;
15
}
16
17
#endif
mat4_zero
static mat4 mat4_zero()
Definition
mat4.h:11
mat4
Definition
mat4.h:7
mat4::data
float data[16]
Definition
mat4.h:8
Generated on Wed Jul 2 2025 16:57:45 for Subastra by
1.9.8