2015-11-03 14:46:54 -05:00

14 lines
169 B
C++

#include "Dcm.hpp"
#include <assert.h>
#include <stdio.h>
using namespace matrix;
int main()
{
Dcmf dcm;
Quatf q = Quatf(dcm);
Eulerf e = Eulerf(dcm);
return 0;
}