about summary refs log tree commit diff
path: root/lri-proto/proto/matrix3x3f.proto
diff options
context:
space:
mode:
Diffstat (limited to 'lri-proto/proto/matrix3x3f.proto')
-rw-r--r--lri-proto/proto/matrix3x3f.proto15
1 files changed, 15 insertions, 0 deletions
diff --git a/lri-proto/proto/matrix3x3f.proto b/lri-proto/proto/matrix3x3f.proto
new file mode 100644
index 0000000..a1558b2
--- /dev/null
+++ b/lri-proto/proto/matrix3x3f.proto
@@ -0,0 +1,15 @@
+syntax = "proto2";
+
+package ltpb;
+
+message Matrix3x3F {
+    required float x00 = 1;
+    required float x01 = 2;
+    required float x02 = 3;
+    required float x10 = 4;
+    required float x11 = 5;
+    required float x12 = 6;
+    required float x20 = 7;
+    required float x21 = 8;
+    required float x22 = 9;
+}