0002-added-new-type-Path.patch

L. Ziegler, 03/06/2014 03:58 PM

Download (997 Bytes)

View differences:

proto/sandbox/rst/geometry/Path.proto
1
package rst.geometry;
2

  
3
import "rst/geometry/Pose.proto";
4

  
5
option java_outer_classname = "PathType";
6

  
7
/**
8
 * A path that consists of tracked poses.
9
 *
10
 * @author Phillip Luecking <plueckin@techfak.uni-bielefeld.de>
11
 */
12
message Path {
13

  
14
    /**
15
     * The path represents a collection of poses.
16
     *
17
     * Order of poses is significant.
18
     */
19
    repeated geometry.Pose poses = 1;
20
}
0
-