diff options
Diffstat (limited to 'lri-proto/proto/matrix4x4f.proto')
-rw-r--r-- | lri-proto/proto/matrix4x4f.proto | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lri-proto/proto/matrix4x4f.proto b/lri-proto/proto/matrix4x4f.proto new file mode 100644 index 0000000..de2de61 --- /dev/null +++ b/lri-proto/proto/matrix4x4f.proto @@ -0,0 +1,22 @@ +syntax = "proto2"; + +package ltpb; + +message Matrix4x4F { + required float x00 = 1; + required float x01 = 2; + required float x02 = 3; + required float x03 = 4; + required float x10 = 5; + required float x11 = 6; + required float x12 = 7; + required float x13 = 8; + required float x20 = 9; + required float x21 = 10; + required float x22 = 11; + required float x23 = 12; + required float x30 = 13; + required float x31 = 14; + required float x32 = 15; + required float x33 = 16; +} |