Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / grpc / node_modules / protobufjs / tests / protobufnet.proto
1 message IMeshImp {\r
2 }\r
3 message Mesh {\r
4    optional IMeshImp _meshImp = 1;\r
5    repeated float3 _vertices = 2;\r
6    repeated uint32 _colors = 3;\r
7    repeated float3 _normals = 4;\r
8    repeated float2 _uvs = 5;\r
9    repeated int32 _triangles = 6;\r
10 }\r
11 message float2 {\r
12    optional float x = 1 [default = 0];\r
13    optional float y = 2 [default = 0];\r
14 }\r
15 message float3 {\r
16    optional float x = 1 [default = 0];\r
17    optional float y = 2 [default = 0];\r
18    optional float z = 3 [default = 0];\r
19 }\r