From db81b925d776103326128bf629cbdda576a223e7 Mon Sep 17 00:00:00 2001
From: sanine <sanine.not@pm.me>
Date: Sat, 16 Apr 2022 11:55:09 -0500
Subject: move 3rd-party librarys into libs/ and add built-in honeysuckle

---
 libs/assimp/test/models/glTF2/cameras/Cameras.gltf |  98 +++++++++++++++++++++
 .../test/models/glTF2/cameras/simpleSquare.bin     | Bin 0 -> 60 bytes
 2 files changed, 98 insertions(+)
 create mode 100644 libs/assimp/test/models/glTF2/cameras/Cameras.gltf
 create mode 100644 libs/assimp/test/models/glTF2/cameras/simpleSquare.bin

(limited to 'libs/assimp/test/models/glTF2/cameras')

diff --git a/libs/assimp/test/models/glTF2/cameras/Cameras.gltf b/libs/assimp/test/models/glTF2/cameras/Cameras.gltf
new file mode 100644
index 0000000..25e9e24
--- /dev/null
+++ b/libs/assimp/test/models/glTF2/cameras/Cameras.gltf
@@ -0,0 +1,98 @@
+{
+  "scenes" : [
+    {
+      "nodes" : [ 0, 1, 2 ]
+    }
+  ],
+  "nodes" : [
+    {
+      "rotation" : [ -0.383, 0.0, 0.0, 0.92375 ],
+      "mesh" : 0
+    },
+    {
+      "translation" : [ 0.5, 0.5, 3.0 ],
+      "camera" : 0
+    },
+    {
+      "translation" : [ 0.5, 0.5, 3.0 ],
+      "camera" : 1
+    }
+  ],
+  
+  "cameras" : [
+    {
+      "type": "perspective",
+      "perspective": {
+        "aspectRatio": 1.0,
+        "yfov": 0.7,
+        "zfar": 100,
+        "znear": 0.01
+      }
+    },
+    {
+      "type": "orthographic",
+      "orthographic": {
+        "xmag": 1.0,
+        "ymag": 1.0,
+        "zfar": 100,
+        "znear": 0.01
+      }
+    }
+  ],
+  
+  "meshes" : [
+    {
+      "primitives" : [ {
+        "attributes" : {
+          "POSITION" : 1
+        },
+        "indices" : 0
+      } ]
+    }
+  ],
+
+  "buffers" : [
+    {
+      "uri" : "simpleSquare.bin",
+      "byteLength" : 60
+    }
+  ],
+  "bufferViews" : [
+    {
+      "buffer" : 0,
+      "byteOffset" : 0,
+      "byteLength" : 12,
+      "target" : 34963
+    },
+    {
+      "buffer" : 0,
+      "byteOffset" : 12,
+      "byteLength" : 48,
+      "target" : 34962
+    }
+  ],
+  "accessors" : [
+    {
+      "bufferView" : 0,
+      "byteOffset" : 0,
+      "componentType" : 5123,
+      "count" : 6,
+      "type" : "SCALAR",
+      "max" : [ 3 ],
+      "min" : [ 0 ]
+    },
+    {
+      "bufferView" : 1,
+      "byteOffset" : 0,
+      "componentType" : 5126,
+      "count" : 4,
+      "type" : "VEC3",
+      "max" : [ 1.0, 1.0, 0.0 ],
+      "min" : [ 0.0, 0.0, 0.0 ]
+    }
+  ],
+  
+  "asset" : {
+    "version" : "2.0"
+  }
+}
diff --git a/libs/assimp/test/models/glTF2/cameras/simpleSquare.bin b/libs/assimp/test/models/glTF2/cameras/simpleSquare.bin
new file mode 100644
index 0000000..a6edb3b
Binary files /dev/null and b/libs/assimp/test/models/glTF2/cameras/simpleSquare.bin differ
-- 
cgit v1.2.1