├── CMakeLists.txt ├── LICENSE ├── include └── gazebo_radar_plugin │ └── ModeCRadarPlugin.hh ├── msg ├── ModeCRadar.msg └── ModeCRadarSummary.msg ├── package.xml └── src └── ModeCRadarPlugin.cc /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_radar_plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_radar_plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /include/gazebo_radar_plugin/ModeCRadarPlugin.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_radar_plugin/HEAD/include/gazebo_radar_plugin/ModeCRadarPlugin.hh -------------------------------------------------------------------------------- /msg/ModeCRadar.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_radar_plugin/HEAD/msg/ModeCRadar.msg -------------------------------------------------------------------------------- /msg/ModeCRadarSummary.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_radar_plugin/HEAD/msg/ModeCRadarSummary.msg -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_radar_plugin/HEAD/package.xml -------------------------------------------------------------------------------- /src/ModeCRadarPlugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_radar_plugin/HEAD/src/ModeCRadarPlugin.cc --------------------------------------------------------------------------------