Klamp't  0.9.0
XmlODE.h
1 #ifndef XML_ODE_H
2 #define XML_ODE_H
3 
4 #include <tinyxml.h>
5 #include <Klampt/Simulation/ODESimulator.h>
6 #include <Klampt/Simulation/Simulator.h>
7 
8 namespace Klampt {
9 
11 {
12  public:
13  XmlODEGeometry(TiXmlElement* element);
14  bool Get(ODEGeometry& geom);
15 
16  TiXmlElement* e;
17 };
18 
20 {
21  public:
22  XmlODESettings(TiXmlElement* element);
23  bool GetSettings(ODESimulator& sim);
24 
25  TiXmlElement* e;
26 };
27 
29 {
30  public:
31  XmlSimulationSettings(TiXmlElement* element);
32  bool GetSettings(Simulator& sim);
33 
34  TiXmlElement* e;
35 };
36 
37 } //namespace Klampt
38 
39 #endif
Definition: XmlODE.h:28
A physical simulator for a WorldModel.
Definition: Simulator.h:69
Definition: XmlODE.h:10
Definition: ContactDistance.h:6
An interface to the ODE simulator.
Definition: ODESimulator.h:101
An ODE collision geometry.
Definition: ODEGeometry.h:19
Definition: XmlODE.h:19