@jdultra/threedtiles 11.1.13 → 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,24 +0,0 @@
1
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
2
-
3
- /**
4
- * @copyright 2021 Aaron Zhao <yujianzhao2013@gmail.com>
5
- * @license MIT
6
- * FIFO queue data structure
7
- * @class Queue
8
- */
9
-
10
- /**
11
- * @copyright 2021 Aaron Zhao <yujianzhao2013@gmail.com>
12
- * @license MIT
13
- * Heap implementation using 1-d array
14
- * Children is index of 2n + 1 and 2n + 2 where n is the parent index
15
- * Parent is math.floor((m - 1) / 2) where m is is the child index
16
- * @class Heap
17
- */
18
-
19
- /**
20
- * @copyright 2021 Aaron Zhao <yujianzhao2013@gmail.com>
21
- * @license MIT
22
- * Linked hash map data structure
23
- * @class LinkedHashMap
24
- */