From bdf4ad058e9b8186e42b32d12ac8ade2f5f01c24 Mon Sep 17 00:00:00 2001 From: Leon Ziegler Date: Wed, 9 Sep 2015 18:10:04 +0200 Subject: [PATCH 2/2] added list type for new type TrackedPolygonalPatch --- .../rst/tracking/TrackedPolygonalPatch3DSet.proto | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 proto/sandbox/rst/tracking/TrackedPolygonalPatch3DSet.proto diff --git a/proto/sandbox/rst/tracking/TrackedPolygonalPatch3DSet.proto b/proto/sandbox/rst/tracking/TrackedPolygonalPatch3DSet.proto new file mode 100644 index 0000000..d00f673 --- /dev/null +++ b/proto/sandbox/rst/tracking/TrackedPolygonalPatch3DSet.proto @@ -0,0 +1,28 @@ +package rst.tracking; + +import "rst/tracking/TrackedPolygonalPatch3D.proto"; + +option java_outer_classname = "TrackedPolygonalPatch3DSetType"; + +/** + * A collection of @ref .TrackedPolygonalPatch3D objects. + * + * Collecting multiple @ref .TrackedPolygonalPatch3D objects in a + * single data structure is an easy way to express the fact that they + * have been recorded at the same point in time. + * + * @author Leon Ziegler + */ +message TrackedPolygonalPatch3DSet { + + /** + * Empty collections of tracked patches are allowed but should + * rarely be necessary. + * + * Order of patches is not significant since association of + * tracked patches to tracked subjects is done via @ref + * .region.info. + */ + repeated TrackedPolygonalPatch3D patch = 1; + +} -- 1.9.1