Privacy
An open-source, flexible 3D physical simulation framework
nodeState.h
Go to the documentation of this file.
1 /*
2  * Copyright 2011, 2012, DFKI GmbH Robotics Innovation Center
3  *
4  * This file is part of the MARS simulation framework.
5  *
6  * MARS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License
8  * as published by the Free Software Foundation, either version 3
9  * of the License, or (at your option) any later version.
10  *
11  * MARS 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 Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with MARS. If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20 
21 #ifndef MARS_INTERFACES_NODE_STATE_H
22 #define MARS_INTERFACES_NODE_STATE_H
23 
24 #include <mars/utils/Vector.h>
25 
26 namespace mars {
27 
28  namespace interfaces {
29 
39  struct nodeState {
44 
49 
54 
59  }; // end of struct nodeState
60 
61  } // end of namespace interfaces
62 
63 } // end of namespace mars
64 
65 #endif /* MARS_INTERFACES_NODE_STATE_H */
utils::Vector t
The torque of a node.
Definition: nodeState.h:58
utils::Vector l_vel
The linear velocity of a node.
Definition: nodeState.h:43
utils::Vector f
The force velocity of a node.
Definition: nodeState.h:53
Copyright 2012, DFKI GmbH Robotics Innovation Center.
utils::Vector a_vel
The angular velocity of a node.
Definition: nodeState.h:48
Eigen::Matrix< double, 3, 1, Eigen::DontAlign > Vector
Definition: Vector.h:43
A physical state of the node.
Definition: nodeState.h:39