Added mode lines for vi.

This commit is contained in:
jgoppert
2015-11-03 20:26:42 -05:00
parent b842f8d8a5
commit 49035ed6a9
20 changed files with 56 additions and 12 deletions
+6 -4
View File
@@ -7,10 +7,10 @@ using namespace matrix;
int main()
{
Quatf p(1, 2, 3, 4);
assert(p(0) == 1);
assert(p(1) == 2);
assert(p(2) == 3);
assert(p(3) == 100);
assert(p(0) == 1);
assert(p(1) == 2);
assert(p(2) == 3);
assert(p(3) == 4);
Quatf q(0, 1, 0, 0);
Quatf r = p*q;
@@ -18,3 +18,5 @@ int main()
Eulerf e = Eulerf(p);
return 0;
}
/* vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 : */