Lines Matching refs:InfoTree

89 static void parse_bounding_box(const InfoTree& root, Model3D& Model)  in parse_bounding_box()
119 static void parse_dim3(const InfoTree& root, Model3D& Model) in parse_dim3()
123 BOOST_FOREACH(InfoTree bound_box, root.children_named("Bound_Box")) in parse_dim3()
127 BOOST_FOREACH(InfoTree view_box, root.children_named("View_Box")) in parse_dim3()
131 BOOST_FOREACH(InfoTree vertexes, root.children_named("Vertexes")) in parse_dim3()
133 BOOST_FOREACH(InfoTree v, vertexes.children_named("v")) in parse_dim3()
171 BOOST_FOREACH(InfoTree bones, root.children_named("Bones")) in parse_dim3()
173 BOOST_FOREACH(InfoTree bone, root.children_named("Bone")) in parse_dim3()
197 BOOST_FOREACH(InfoTree fills, root.children_named("Fills")) in parse_dim3()
199 BOOST_FOREACH(InfoTree fill, fills.children_named("Fill")) in parse_dim3()
201 BOOST_FOREACH(InfoTree triangles, fill.children_named("Triangles")) in parse_dim3()
203 BOOST_FOREACH(InfoTree v, triangles.children_named("v")) in parse_dim3()
229 BOOST_FOREACH(InfoTree poses, root.children_named("Poses")) in parse_dim3()
231 BOOST_FOREACH(InfoTree pose, poses.children_named("Pose")) in parse_dim3()
244 BOOST_FOREACH(InfoTree bones, pose.children_named("Bones")) in parse_dim3()
246 BOOST_FOREACH(InfoTree bone, bones.children_named("Bone")) in parse_dim3()
294 BOOST_FOREACH(InfoTree animations, root.children_named("Animations")) in parse_dim3()
296 BOOST_FOREACH(InfoTree animation, animations.children_named("Animation")) in parse_dim3()
298 BOOST_FOREACH(InfoTree poses, animation.children_named("Poses")) in parse_dim3()
300 BOOST_FOREACH(InfoTree pose, poses.children_named("Pose")) in parse_dim3()
370 InfoTree fileroot = InfoTree::load_xml(Spec); in LoadModel_Dim3()
371 BOOST_FOREACH(InfoTree root, fileroot.children_named("Model")) in LoadModel_Dim3()
375 } catch (InfoTree::parse_error ex) { in LoadModel_Dim3()
378 } catch (InfoTree::path_error ep) { in LoadModel_Dim3()
381 } catch (InfoTree::data_error ed) { in LoadModel_Dim3()
384 } catch (InfoTree::unexpected_error ee) { in LoadModel_Dim3()