SimRobot.h
Go to the documentation of this file.
1#pragma once
2
3#include <VirtualRobot/VirtualRobot.h>
4#include <VirtualRobot/XML/mujoco/RobotMjcf.h>
5
6namespace mujoco
7{
8
9 /// A robot in simulation.
11 {
12 public:
15
16
17 public:
18 /// The VirtualRobot robot.
20
21 /// The robot MJCF model.
22 VirtualRobot::mujoco::RobotMjcf mjcf{robot};
23 };
24
25} // namespace mujoco
VirtualRobot::mujoco::RobotMjcf mjcf
The robot MJCF model.
Definition SimRobot.h:22
VirtualRobot::RobotPtr robot
The VirtualRobot robot.
Definition SimRobot.h:19
std::shared_ptr< class Robot > RobotPtr
Definition Bus.h:19