File: aiMatrix3x3.pas

package info (click to toggle)
assimp 3.2~dfsg-3~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 12,348 kB
  • sloc: cpp: 108,331; ansic: 4,704; java: 2,036; python: 1,941; pascal: 341; xml: 146; sh: 134; objc: 122; makefile: 47
file content (16 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (13)
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.