3package state_representation.proto;
5import "state_representation/state.proto";
9 repeated string joint_names = 2;
10 repeated double positions = 3;
11 repeated double velocities = 4;
12 repeated double accelerations = 5;
13 repeated double torques = 6;
16message JointPositions {
18 repeated string joint_names = 2;
19 repeated double positions = 3;
22message JointVelocities {
24 repeated string joint_names = 2;
25 repeated double velocities = 3;
28message JointAccelerations {
30 repeated string joint_names = 2;
31 repeated double accelerations = 3;
36 repeated string joint_names = 2;
37 repeated double torques = 3;