The struct t_matrix stores a matrix up to 4x4 and size of 16. A matrix is a grid of numbers that can be manipulated as a single unit. Matrices and their operations are the foundational basis which will helps us to manipulate points, vectors and, ultimately, shapes. More...
#include <matrices.h>
Data Fields | |
double | matrix [MAX][MAX] |
size_t | size |
The struct t_matrix stores a matrix up to 4x4 and size of 16. A matrix is a grid of numbers that can be manipulated as a single unit. Matrices and their operations are the foundational basis which will helps us to manipulate points, vectors and, ultimately, shapes.
matrix | Stores a matrix. |
size | Stores the size of the matrix. For example, a matrix of 3x3 has a size of 9. For instance, a 2x2 matrix has a size of 4. |