1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

DEBUGGERY

This commit is contained in:
Lars Mueller 2025-01-20 22:45:17 +01:00
parent 19ea7c8e50
commit 87213f1591
3 changed files with 23 additions and 1 deletions

View file

@ -12,6 +12,8 @@
#include "aabbox3d.h"
#include "rect.h"
#include <cassert>
#include "IrrCompileConfig.h" // for IRRLICHT_API
#include <ostream>
namespace irr
{
@ -87,6 +89,20 @@ public:
{
return M[index];
}
//! Debug print the matrix
friend std::ostream& operator<<(std::ostream& os, const CMatrix4<T>& matrix)
{
os << "Matrix4:" << std::endl;
for (int row = 0; row < 4; ++row)
{
for (int col = 0; col < 4; ++col)
{
os << matrix(row, col) << " ";
}
os << std::endl;
}
return os;
}
//! Simple operator for linearly accessing every element of the matrix.
const T &operator[](u32 index) const { return M[index]; }