xiron 0.5.0

A lightweight 2D robot simulator written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
syntax = "proto3";

message LaserScanMsg {
  double timestamp = 1;
  string robot_id = 2;
  float angle_min = 3;
  float angle_max = 4;
  int32 num_readings = 5;
  repeated float values = 6;
}