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
+6 -4
View File
@@ -6,8 +6,10 @@ using namespace matrix;
int main()
{
Vector<float, 5> v;
float n = v.norm();
float r = v.dot(v);
return 0;
Vector<float, 5> v;
float n = v.norm();
(void)n;
float r = v.dot(v);
(void)r;
return 0;
}