spatial-dyn
urdf.h
1 
10 #ifndef SPATIAL_DYN_PARSERS_URDF_H_
11 #define SPATIAL_DYN_PARSERS_URDF_H_
12 
13 #include <string> // std::string
14 
15 #include "spatial_dyn/structs/articulated_body.h"
16 
17 namespace spatial_dyn {
18 namespace urdf {
19 
29 ArticulatedBody LoadModel(const std::string& path_urdf,
30  const std::string& path_meshes = "",
31  bool simplify = true);
32 
33 } // namespace urdf
34 } // namespace spatial_dyn
35 
36 #endif // SPATIAL_DYN_PARSERS_URDF_H_
Definition: discrete_dynamics.cc:21