summaryrefslogtreecommitdiff
path: root/libs/assimp/port/AssimpDelphi/aiMatrix3x3.pas
blob: a90f11f27978eac921c47a7c445d445cfcfd20a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
unit aiMatrix3x3;

interface

type TaiMatrix3x3 = packed record
   a1, a2, a3, a4: single;
   b1, b2, b3, b4: single;
   c1, c2, c3, c4: single;
end;
PaiMatrix3x3 = ^TaiMatrix3x3;



implementation

end.