about summary refs log tree commit diff
path: root/lri-proto/proto/matrix3x3f.proto
blob: a1558b2ac2580bcd42a9e855c87d0c2ab3621c0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}