tge/lib/dtsSDK/DTSMatrix.cpp
2025-02-17 23:17:30 -06:00

15 lines
193 B
C++
Executable File

#pragma warning ( disable: 4786 )
#include <vector>
#include <cmath>
#include "DTSMatrix.h"
namespace DTS
{
void test()
{
Matrix<4,4> m ;
m.inverse() ;
}
}