0002-Added-new-type-PolygonalPatch3DSet-to-sandbox.patch

L. Ziegler, 04/07/2015 02:33 PM

Download (1.08 KB)

View differences:

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

  
3
option java_outer_classname = "PolygonalPatch3DSetType";
4

  
5
import "rst/geometry/PolygonalPatch3D.proto";
6

  
7
/**
8
 * A set of @ref .PolygonalPatch3D objects.
9
 *
10
 * @author Leon Ziegler <lziegler@techfak.uni-bielefeld.de>
11
 */
12
message PolygonalPatch3DSet {
13

  
14
    /**
15
     * Empty collection is allowed. Order is not important.
16
     */
17
    repeated PolygonalPatch3D patches = 1;
18

  
19
}
0
-