0001-Added-name-and-rotation-to-rst.kinematics.Posture3DF.patch

M. Goerlich, 01/27/2016 06:48 PM

Download (1.49 KB)

View differences:

proto/stable/rst/kinematics/Posture3DFloat.proto
13 13
 *
14 14
 * @author Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
15 15
 */
16
// @constraint((len(.rotation) = 0) or (len(.rotation) = len(.position)))
17
// @constraint((len(.name) = 0) or (len(.name) = len(.position)))
16 18
// @create_collection
17 19
message Posture3DFloat {
18 20

  
......
28 30
     */
29 31
    repeated geometry.Translation position = 2;
30 32

  
33
    /**
34
     * Sequence of joint rotations in three-dimensional space.
35
     *
36
     * Interpretation depends on information transmitted trough other
37
     * channels.
38
     *
39
     * The order of entries is significant since they are related to
40
     * their @ref .position.
41
     */
42
    repeated geometry.Rotation rotation = 3;
43

  
44
    /**
45
     * Names of the individual positions stored in @ref .posture.
46
     */
47
    repeated bytes                     name = 4;
31 48
}
49

  
32
-