diff options
author | gennyble <gen@nyble.dev> | 2023-09-10 02:44:01 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2023-09-10 02:44:01 -0500 |
commit | a962ba9c853a797e9a41b2830ec0181b167d8cd9 (patch) | |
tree | 7de53dfcaf87c5d4b43f2e8b38161eb193c136ad /lri-proto/proto/matrix3x3f.proto | |
parent | 70187683361d97a8b5a251567323c323c90302f2 (diff) | |
download | lri-rs-a962ba9c853a797e9a41b2830ec0181b167d8cd9.tar.gz lri-rs-a962ba9c853a797e9a41b2830ec0181b167d8cd9.zip |
reorg
Diffstat (limited to 'lri-proto/proto/matrix3x3f.proto')
-rw-r--r-- | lri-proto/proto/matrix3x3f.proto | 15 |
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; +} |