diff options
author | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
commit | f1fe73d1909a2448a004a88362a1a532d0d4f7c3 (patch) | |
tree | ab37ae3837e2f858de2932bcee9f26e69fab3db1 /libs/assimp/port/AssimpDelphi/aiMatrix4x4.pas | |
parent | f567ea1e2798fd3156a416e61f083ea3e6b95719 (diff) |
switch to tinyobj and nanovg from assimp and cairo
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.
|