Skip to content
Snippets Groups Projects
Select Git revision
  • 8ad527abee954136c531e4ed2502c7ec16b60155
  • main default
  • feature/cleanup-for-registry protected
  • kinetic
  • 0.3.7
  • 0.3.6
  • 0.3.5
  • 0.3.4
  • 0.3.3
  • 0.3.2
  • 0.2.2
  • 0.3.1
  • 0.3.0
  • 0.2.1
  • 0.1.6
  • 0.1.5
  • 0.2.0
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.0.1
  • 0.0.0
23 results

gradle-wrapper.properties

Blame
  • trajectory.proto 452 B
    syntax = "proto3";
    
    package plan;
    
    message Trajectory {
    
      message Position {
        double x = 1;
        double y = 2;
        double z = 3;
      }
    
      message Orientation {
        double x = 1;
        double y = 2;
        double z = 3;
        double w = 4;
      }
    
      enum PlanningMode {
        FLUID = 0;
        CARTESIAN = 1;
      }
    
      message Pose {
        Position position = 1;
        Orientation orientation = 2;
        PlanningMode mode = 3;
      }
    
      repeated Pose pose = 1;
      bool loop = 2;
    }