room101/OBSOLETE/MATRIX.CPP

23 lines
586 B
C++

#include "matrix.hpp"
#include "convex.hpp"
#include "polygon.hpp"
/*******************************************************************************
** common_matrices
*******************************************************************************/
Matrix common_matrices[] =
{
{
{0.0f, 0.0f, 0.0f, 0.0f},
{0.0f, 0.0f, 0.0f, 0.0f},
{0.0f, 0.0f, 0.0f, 0.0f},
{0.0f, 0.0f, 0.0f, 0.0f}
},
{
{1.0f, 0.0f, 0.0f, 0.0f},
{0.0f, 1.0f, 0.0f, 0.0f},
{0.0f, 0.0f, 1.0f, 0.0f},
{0.0f, 0.0f, 0.0f, 1.0f}
}
};