0001-added-new-type-TrackedPolygonalPatch3D-to-sandbox.patch

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

Download (1.35 KB)

View differences:

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

  
3
import "rst/tracking/TrackingInfo.proto";
4
import "rst/geometry/PolygonalPatch3D.proto";
5

  
6
option java_outer_classname = "TrackedPolygonalPatch3DType";
7

  
8
/**
9
 * A planar polygon in 3D space with tracking information.
10
 *
11
 * @author Leon Ziegler <lziegler@techfak.uni-bielefeld.de>
12
 */
13
message TrackedPolygonalPatch3D {
14

  
15
    /**
16
     * Tracking information such as identity of the subject being tracked.
17
     */
18
    required TrackingInfo info = 1;
19

  
20
    /**
21
     * Geometric properties of the tracked subject identified by @ref .info in
22
     * three-dimensional space.
23
     */
24
    required geometry.PolygonalPatch3D patch = 2;
25
}
0
-