Added matrix

This commit is contained in:
2021-07-12 10:22:33 -07:00
parent df2ee3bf1b
commit e990d28a1f
11 changed files with 250 additions and 64 deletions

View File

@ -0,0 +1,18 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../libs.h"
/**
* Representation for a matrix. Used as a highlevel wrapper for the math
* functions that sit underneath this API.
*/
typedef struct {
/** Internal Matrix API */
mat4 internalMatrix;
} matrix_t;