xiron 0.5.0

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

message TwistMsg {
  double timestamp = 1;
  string robot_id = 2;
  LinearMsg linear = 3;
  float angular = 4;

  message LinearMsg {
    float x = 1;
    float y = 2;
  }
}