diff options
Diffstat (limited to 'lri-proto/proto/point3f.proto')
-rw-r--r-- | lri-proto/proto/point3f.proto | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lri-proto/proto/point3f.proto b/lri-proto/proto/point3f.proto new file mode 100644 index 0000000..71e5cbd --- /dev/null +++ b/lri-proto/proto/point3f.proto @@ -0,0 +1,9 @@ +syntax = "proto2"; + +package ltpb; + +message Point3F { + required float x = 1; + required float y = 2; + required float z = 3; +} |