Subastra
Loading...
Searching...
No Matches
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
7typedef struct {
8 float data[16];
9} mat4;
10
11static mat4 mat4_zero() {
12 mat4 ret;
13 memset(&ret.data, 0, sizeof(float) * 16);
14 return ret;
15}
16
17#endif
static mat4 mat4_zero()
Definition mat4.h:11
Definition mat4.h:7
float data[16]
Definition mat4.h:8