new stuff
This commit is contained in:
parent
8998bc3936
commit
64c8492e5c
6907 changed files with 3401899 additions and 0 deletions
16
vendor/assimp/port/AssimpDelphi/aiMatrix4x4.pas
vendored
Normal file
16
vendor/assimp/port/AssimpDelphi/aiMatrix4x4.pas
vendored
Normal file
|
|
@ -0,0 +1,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.
|
||||
Loading…
Add table
Add a link
Reference in a new issue