0001-added-new-proto-type-JointJerks-and-Weights.patch

N. Dehio, 06/21/2016 11:00 AM

Download (1.75 KB)

View differences:

proto/sandbox/rst/robot/Weights.proto
1
package rst.robot;
2

  
3
option java_outer_classname = "WeightsType";
4

  
5
/**
6
 * A sequence of weights.
7
 *
8
 * @author Niels Dehio <ndehio@cor-lab.uni-bielefeld.de>
9
 */
10
// @create_collection
11
message Weights {
12

  
13
    /**
14
     * Weights
15
     */
16
    repeated float weights = 1 [packed=true];
17

  
18
}
proto/stable/rst/kinematics/JointJerks.proto
1
package rst.kinematics;
2

  
3
option java_outer_classname = "JointJerksType";
4

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

  
13
    /**
14
     * Joint jerks.
15
     *
16
     * Order is important and represents the described underlying
17
     * physical object.
18
     */
19
    // @unit(rad/sec^2)
20
    repeated float jerks = 1 [packed=true];
21

  
22
}
0
-