0001-new-proto-file-proto-stable-rst-kinematics-JointAcce.patch

N. Dehio, 09/02/2015 06:36 PM

Download (1.11 KB)

View differences:

proto/stable/rst/kinematics/JointAccelerations.proto
1
package rst.kinematics;
2

  
3
option java_outer_classname = "JointAccelerationsType";
4

  
5
/**
6
 * A sequence of joint accelerations of multiple joints.
7
 *
8
 * @author Niels Dehio <ndehio@cor-lab.uni-bielefeld.de>
9
 */
10
message JointAccelerations {
11

  
12
    /**
13
     * Joint accelerations
14
     */
15
    // @unit(rad/sec^2)
16
    repeated float accelerations = 1 [packed=true];
17

  
18
}
19

  
0
-