Ravelin
Vector3f.h
1 /****************************************************************************
2  * Copyright 2006 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 _VECTOR3F_H
8 #define _VECTOR3F_H
9 
10 #include <assert.h>
11 #include <cmath>
12 #include <stdexcept>
13 #include <limits>
14 #include <iostream>
15 #include <boost/shared_ptr.hpp>
16 #include <Ravelin/FrameException.h>
17 #include <Ravelin/Origin3f.h>
18 #include <Ravelin/ColumnIteratorf.h>
19 #include <Ravelin/RowIteratord.h>
20 
21 namespace Ravelin {
22 
23 #include "fdefs.h"
24 #include "Vector3.h"
25 #include "undefs.h"
26 
27 } // end namespace
28 
29 #endif
30