0001-Added-joint-velocities-type-to-rst-dynamics-sandbox.patch

Anonymous, 07/04/2014 10:15 AM

Download (1.1 KB)

View differences:

proto/sandbox/rst/dynamics/JointVelocities.proto
1
package rst.dynamics;
2

  
3
option java_outer_classname = "JointVelocitiesType";
4

  
5
/**
6
 * A sequence of joint velocities of multiple joints.
7
 *
8
 * @author Arne Nordmann <anordman@cor-lab.uni-bielefeld.de>
9
 */
10
message JointVelocities {
11

  
12
    /**
13
     * Joint velocities
14
     */
15
    // @unit(rad-per-second)
16
    repeated float velocities = 1 [packed=true];
17

  
18
}
0
-