0002-added-list-type-for-new-type-TrackedPolygonalPatch.patch

L. Ziegler, 09/09/2015 06:13 PM

Download (1.52 KB)

View differences:

proto/sandbox/rst/tracking/TrackedPolygonalPatch3DSet.proto
1
package rst.tracking;
2

  
3
import "rst/tracking/TrackedPolygonalPatch3D.proto";
4

  
5
option java_outer_classname = "TrackedPolygonalPatch3DSetType";
6

  
7
/**
8
 * A collection of @ref .TrackedPolygonalPatch3D objects.
9
 *
10
 * Collecting multiple @ref .TrackedPolygonalPatch3D objects in a
11
 * single data structure is an easy way to express the fact that they
12
 * have been recorded at the same point in time.
13
 *
14
 * @author Leon Ziegler <lziegler@techfak.uni-bielefeld.de>
15
 */
16
message TrackedPolygonalPatch3DSet {
17

  
18
    /**
19
     * Empty collections of tracked patches are allowed but should
20
     * rarely be necessary.
21
     *
22
     * Order of patches is not significant since association of
23
     * tracked patches to tracked subjects is done via @ref
24
     * .region.info.
25
     */
26
    repeated TrackedPolygonalPatch3D patch = 1;
27

  
28
}
0
-