Formatting and added Scalar.

This commit is contained in:
jgoppert
2015-11-03 19:38:31 -05:00
parent 76e86cf937
commit a36ff9f1e5
21 changed files with 811 additions and 697 deletions
+9 -6
View File
@@ -1,4 +1,5 @@
#include "Euler.hpp"
#include "Scalar.hpp"
#include <assert.h>
#include <stdio.h>
@@ -6,10 +7,12 @@ using namespace matrix;
int main()
{
Eulerf e;
float dp = e.T()*e;
Dcmf dcm = Dcmf(e);
Quatf q = Quatf(e);
float n = e.norm();
return 0;
Eulerf e;
float dp = Scalarf(e.T()*e);
(void)dp;
Dcmf dcm = Dcmf(e);
Quatf q = Quatf(e);
float n = e.norm();
(void)n;
return 0;
}