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

interface

type TaiMatrix4x4 = packed record
   a1, a2, a3, a4: single;
   b1, b2, b3, b4: single;
   c1, c2, c3, c4: single;
   d1, d2, d3, d4: single;
end;
PaiMatrix4x4 = ^TaiMatrix4x4;


implementation

end.