Ravelin
Types.h
1 /****************************************************************************
2  * Copyright 2015 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 
11 #ifndef _RAVELIN_TYPES_H
12 #define _RAVELIN_TYPES_H
13 
14 #include <utility>
15 #include <vector>
16 #include <list>
17 #include <boost/shared_ptr.hpp>
18 
19 namespace Ravelin {
20 
22 enum ReferenceFrameType { eGlobal, eLink, eLinkCOM, eJoint };
23 
24 } // end namespace
25 
26 #endif
27 
ReferenceFrameType
reference frame type for reduced-coordinate dynamics computations
Definition: Types.h:22