miniRT
By Marcelo Magalhães and Ygor G. Sena, 2023.
s_matrix Struct Reference

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
 

Detailed Description

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.

Parameters
matrixStores a matrix.
sizeStores 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.