Skip to content
Snippets Groups Projects
Select Git revision
  • a5cbea65e22b0ecbdf448cc896d8857ab6eca548
  • main default
  • kinetic protected
  • hydro
  • indigo
  • obsolete/master
  • 0.3.3
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.1.24
  • 0.1.23
  • 0.2.1
  • 0.1.22
  • 0.1.21
  • 0.1.20
  • 0.1.19
  • 0.1.18
  • 0.1.17
  • 0.1.16
  • 0.1.15
  • 0.1.14
  • 0.1.13
  • 0.1.12
  • 0.1.11
  • 0.1.10
26 results

build.gradle

Blame
  • linkstate.proto 646 B
    syntax = "proto3";
    
    package panda;
    
    message PandaLinkState {
    
      string name = 1;
    
      message Position {
        float positionX = 1;
        float positionY = 2;
        float positionZ = 3;
      }
    
      message Orientation {
        float orientationX = 1;
        float orientationY = 2;
        float orientationZ = 3;
        float orientationW = 4;
      }
    
      message TwistLinear {
        float twistLinearX = 1;
        float twistLinearY = 2;
        float twistLinearZ = 3;
      }
    
      message TwistAngular {
        float twistAngularX = 1;
        float twistAngularY = 2;
        float twistAngularZ = 3;
      }
    
      Position pos = 2;
      Orientation orient = 3;
      TwistLinear tl = 4;
      TwistAngular ta = 5;
    }