Ravelin
Matrix2f.h
1 /****************************************************************************
2  * Copyright 2013 Evan Drumwright
3  * This library is distributed under the terms of the Apache V2.0
4  * License (obtainable from http://www.apache.org/licenses/LICENSE-2.0).
5  ****************************************************************************/
6 
7 #ifndef _MATRIX2F_H
8 #define _MATRIX2F_H
9 
10 #include <vector>
11 #include <algorithm>
12 #include <Ravelin/cblas.h>
13 #include <Ravelin/Constants.h>
14 #include <Ravelin/MissizeException.h>
15 #include <Ravelin/InvalidIndexException.h>
16 #include <Ravelin/DataMismatchException.h>
17 #include <Ravelin/Origin2f.h>
18 
19 namespace Ravelin {
20 
21 #include "fdefs.h"
22 #include "Matrix2.h"
23 #include "undefs.h"
24 
25 } // end namespace
26 
27 #endif
28