diff options
Diffstat (limited to 'libs/assimp/port/AssimpDelphi/aiMatrix4x4.pas')
-rw-r--r-- | libs/assimp/port/AssimpDelphi/aiMatrix4x4.pas | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libs/assimp/port/AssimpDelphi/aiMatrix4x4.pas b/libs/assimp/port/AssimpDelphi/aiMatrix4x4.pas deleted file mode 100644 index 45e0faf..0000000 --- a/libs/assimp/port/AssimpDelphi/aiMatrix4x4.pas +++ /dev/null @@ -1,16 +0,0 @@ -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.
|