Ravelin
Matrix3f.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 _MATRIX3F_H
8 #define _MATRIX3F_H
9 
10 #include <iostream>
11 #include <algorithm>
12 #include <vector>
13 #include <Ravelin/cblas.h>
14 #include <Ravelin/Constants.h>
15 #include <Ravelin/MissizeException.h>
16 #include <Ravelin/InvalidIndexException.h>
17 #include <Ravelin/DataMismatchException.h>
18 #include <Ravelin/Vector3f.h>
19 #include <Ravelin/Quatf.h>
20 
21 namespace Ravelin {
22 
23 #include "fdefs.h"
24 #include "Matrix3.h"
25 #include "undefs.h"
26 
27 } // end namespace
28 
29 #endif