cheshirekow  v0.1.0
fiber.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 Josh Bialkowski (jbialk@mit.edu)
3  *
4  * This file is part of fiber.
5  *
6  * fiber is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * fiber is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with fiber. If not, see <http://www.gnu.org/licenses/>.
18  */
25 #ifndef MPBLOCKS_LINALG_H_
26 #define MPBLOCKS_LINALG_H_
27 
29 namespace fiber {
30 
31 typedef int Index;
32 typedef unsigned int Size;
33 
34 } // namespace fiber
35 
36 #include <cassert>
37 #include <cmath>
39 #include <fiber/rvalue.h>
40 #include <fiber/lvalue.h>
41 #include <fiber/transpose.h>
42 #include <fiber/difference.h>
43 #include <fiber/sum.h>
44 #include <fiber/product.h>
45 #include <fiber/scale.h>
46 #include <fiber/view.h>
47 #include <fiber/matrix.h>
48 #include <fiber/normalize.h>
49 #include <fiber/identity.h>
50 #include <fiber/cross_matrix.h>
51 
53 #include <fiber/quaternion.h>
54 #include <fiber/axis_angle.h>
55 #include <fiber/euler_angles.h>
56 
57 #include <fiber/ostream.h>
58 
59 #endif // MPBLOCKS_LINALG_H_
unsigned int Size
Definition: fiber.h:32
int Index
Definition: fiber.h:31