2019-08-13 06:15:58 -05:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package rips;
|
|
|
|
|
|
|
|
message Empty
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
message ClientToServerStreamReply
|
|
|
|
{
|
2019-08-14 02:14:12 -05:00
|
|
|
int64 accepted_value_count = 1;
|
2020-02-11 14:20:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
message Vec3i {
|
|
|
|
int32 i = 1;
|
|
|
|
int32 j = 2;
|
|
|
|
int32 k = 3;
|
|
|
|
}
|
|
|
|
|
2020-02-17 10:46:15 -06:00
|
|
|
message Vec3d
|
|
|
|
{
|
|
|
|
double x = 1;
|
|
|
|
double y = 2;
|
|
|
|
double z = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CellCenters
|
|
|
|
{
|
|
|
|
repeated Vec3d centers = 1;
|
|
|
|
}
|
2020-02-19 03:16:28 -06:00
|
|
|
|
|
|
|
message CellCorners {
|
|
|
|
Vec3d c0 = 1;
|
|
|
|
Vec3d c1 = 2;
|
|
|
|
Vec3d c2 = 3;
|
|
|
|
Vec3d c3 = 4;
|
|
|
|
Vec3d c4 = 5;
|
|
|
|
Vec3d c5 = 6;
|
|
|
|
Vec3d c6 = 7;
|
|
|
|
Vec3d c7 = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CellCornersArray
|
|
|
|
{
|
|
|
|
repeated CellCorners cells = 1;
|
|
|
|
}
|