mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
37 lines
475 B
Protocol Buffer
37 lines
475 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "VectorDefines.proto";
|
|
|
|
package rips;
|
|
|
|
message Empty
|
|
{
|
|
}
|
|
|
|
message ClientToServerStreamReply
|
|
{
|
|
int64 accepted_value_count = 1;
|
|
}
|
|
|
|
|
|
message CellCenters
|
|
{
|
|
repeated Vec3d centers = 1;
|
|
}
|
|
|
|
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;
|
|
}
|