tge/lib/dtsSDK/DTSMatrix.cpp
2017-04-17 06:17:10 -06:00

15 lines
198 B
C++
Executable File

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