mirage2d 1.1.52 → 1.1.53

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.
Files changed (524) hide show
  1. package/dist/lib/gifler/README.md +14 -0
  2. package/dist/lib/gifler/gifler.js +1051 -0
  3. package/dist/lib/gifler/gifler.min.js +2 -0
  4. package/dist/lib/gifler/metalsmith-watch.json +33 -0
  5. package/dist/lib/gifler/metalsmith.json +25 -0
  6. package/dist/lib/gifler/package.json +33 -0
  7. package/dist/lib/gifler/site/_constants.less +29 -0
  8. package/dist/lib/gifler/site/_examples/rainbow.js +28 -0
  9. package/dist/lib/gifler/site/_examples/simple.js +1 -0
  10. package/dist/lib/gifler/site/_layout.jade +20 -0
  11. package/dist/lib/gifler/site/_nav.jade +8 -0
  12. package/dist/lib/gifler/site/assets/gif/_data.json +18 -0
  13. package/dist/lib/gifler/site/assets/gif/florian-8.gif +0 -0
  14. package/dist/lib/gifler/site/assets/gif/nyan.gif +0 -0
  15. package/dist/lib/gifler/site/assets/gif/pots.gif +0 -0
  16. package/dist/lib/gifler/site/assets/gif/run.gif +0 -0
  17. package/dist/lib/gifler/site/assets/gif/toroid.gif +0 -0
  18. package/dist/lib/gifler/site/assets/gifler.js +2 -0
  19. package/dist/lib/gifler/site/assets/lib/highlight.pack.js +1 -0
  20. package/dist/lib/gifler/site/assets/lib/monokai_sublime.css +154 -0
  21. package/dist/lib/gifler/site/examples.jade +43 -0
  22. package/dist/lib/gifler/site/examples.less +37 -0
  23. package/dist/lib/gifler/site/index.jade +49 -0
  24. package/dist/lib/gifler/site/index.less +63 -0
  25. package/dist/lib/gifler/site/theme.less +121 -0
  26. package/dist/lib/gifler/src/gifler.coffee +203 -0
  27. package/dist/lib/includeLibs.js +105 -0
  28. package/dist/lib/jsts/README.md +39 -0
  29. package/dist/lib/jsts/dist/jsts.js +33201 -0
  30. package/dist/lib/jsts/dist/jsts.js.map +1 -0
  31. package/dist/lib/jsts/dist/jsts.min.js +8 -0
  32. package/dist/lib/jsts/dist/jsts.min.js.map +1 -0
  33. package/dist/lib/jsts/hasInterface.js +3 -0
  34. package/dist/lib/jsts/java/io/ByteArrayOutputStream.js +1 -0
  35. package/dist/lib/jsts/java/io/IOException.js +3 -0
  36. package/dist/lib/jsts/java/io/InputStream.js +1 -0
  37. package/dist/lib/jsts/java/io/LineNumberReader.js +1 -0
  38. package/dist/lib/jsts/java/io/OutputStream.js +1 -0
  39. package/dist/lib/jsts/java/io/PrintStream.js +1 -0
  40. package/dist/lib/jsts/java/io/Serializable.js +1 -0
  41. package/dist/lib/jsts/java/io/StringReader.js +1 -0
  42. package/dist/lib/jsts/java/io/StringWriter.js +1 -0
  43. package/dist/lib/jsts/java/io/Writer.js +1 -0
  44. package/dist/lib/jsts/java/lang/Character.js +9 -0
  45. package/dist/lib/jsts/java/lang/Cloneable.js +1 -0
  46. package/dist/lib/jsts/java/lang/Comparable.js +1 -0
  47. package/dist/lib/jsts/java/lang/Double.js +301 -0
  48. package/dist/lib/jsts/java/lang/Exception.js +9 -0
  49. package/dist/lib/jsts/java/lang/IllegalArgumentException.js +8 -0
  50. package/dist/lib/jsts/java/lang/IndexOutOfBoundsException.js +8 -0
  51. package/dist/lib/jsts/java/lang/Integer.js +33 -0
  52. package/dist/lib/jsts/java/lang/Long.js +16 -0
  53. package/dist/lib/jsts/java/lang/RuntimeException.js +8 -0
  54. package/dist/lib/jsts/java/lang/StringBuffer.js +14 -0
  55. package/dist/lib/jsts/java/lang/StringBuilder.js +14 -0
  56. package/dist/lib/jsts/java/lang/System.js +15 -0
  57. package/dist/lib/jsts/java/lang/UnsupportedOperationException.js +8 -0
  58. package/dist/lib/jsts/java/text/DecimalFormat.js +1 -0
  59. package/dist/lib/jsts/java/text/DecimalFormatSymbols.js +1 -0
  60. package/dist/lib/jsts/java/util/ArrayList.js +109 -0
  61. package/dist/lib/jsts/java/util/Arrays.js +44 -0
  62. package/dist/lib/jsts/java/util/Collection.js +47 -0
  63. package/dist/lib/jsts/java/util/Collections.js +35 -0
  64. package/dist/lib/jsts/java/util/Comparator.js +1 -0
  65. package/dist/lib/jsts/java/util/EmptyStackException.js +8 -0
  66. package/dist/lib/jsts/java/util/HashMap.js +43 -0
  67. package/dist/lib/jsts/java/util/HashSet.js +87 -0
  68. package/dist/lib/jsts/java/util/Iterator.js +24 -0
  69. package/dist/lib/jsts/java/util/LinkedList.js +17 -0
  70. package/dist/lib/jsts/java/util/List.js +26 -0
  71. package/dist/lib/jsts/java/util/Map.js +51 -0
  72. package/dist/lib/jsts/java/util/NoSuchElementException.js +8 -0
  73. package/dist/lib/jsts/java/util/PriorityQueue.js +78 -0
  74. package/dist/lib/jsts/java/util/Set.js +19 -0
  75. package/dist/lib/jsts/java/util/SortedMap.js +6 -0
  76. package/dist/lib/jsts/java/util/SortedSet.js +6 -0
  77. package/dist/lib/jsts/java/util/Stack.js +103 -0
  78. package/dist/lib/jsts/java/util/TreeMap.js +262 -0
  79. package/dist/lib/jsts/java/util/TreeSet.js +82 -0
  80. package/dist/lib/jsts/org/locationtech/jts/JTSVersion.js +25 -0
  81. package/dist/lib/jsts/org/locationtech/jts/algorithm/Angle.js +97 -0
  82. package/dist/lib/jsts/org/locationtech/jts/algorithm/Area.js +50 -0
  83. package/dist/lib/jsts/org/locationtech/jts/algorithm/BoundaryNodeRule.js +44 -0
  84. package/dist/lib/jsts/org/locationtech/jts/algorithm/CGAlgorithms3D.js +58 -0
  85. package/dist/lib/jsts/org/locationtech/jts/algorithm/CGAlgorithmsDD.js +78 -0
  86. package/dist/lib/jsts/org/locationtech/jts/algorithm/Centroid.js +123 -0
  87. package/dist/lib/jsts/org/locationtech/jts/algorithm/ConvexHull.js +244 -0
  88. package/dist/lib/jsts/org/locationtech/jts/algorithm/Distance.js +55 -0
  89. package/dist/lib/jsts/org/locationtech/jts/algorithm/HCoordinate.js +76 -0
  90. package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPoint.js +18 -0
  91. package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPointArea.js +194 -0
  92. package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPointLine.js +74 -0
  93. package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPointPoint.js +46 -0
  94. package/dist/lib/jsts/org/locationtech/jts/algorithm/Intersection.js +43 -0
  95. package/dist/lib/jsts/org/locationtech/jts/algorithm/Length.js +23 -0
  96. package/dist/lib/jsts/org/locationtech/jts/algorithm/LineIntersector.js +152 -0
  97. package/dist/lib/jsts/org/locationtech/jts/algorithm/MinimumBoundingCircle.js +180 -0
  98. package/dist/lib/jsts/org/locationtech/jts/algorithm/MinimumDiameter.js +162 -0
  99. package/dist/lib/jsts/org/locationtech/jts/algorithm/NotRepresentableException.js +10 -0
  100. package/dist/lib/jsts/org/locationtech/jts/algorithm/Orientation.js +86 -0
  101. package/dist/lib/jsts/org/locationtech/jts/algorithm/PointLocation.js +44 -0
  102. package/dist/lib/jsts/org/locationtech/jts/algorithm/PointLocator.js +111 -0
  103. package/dist/lib/jsts/org/locationtech/jts/algorithm/RayCrossingCounter.js +87 -0
  104. package/dist/lib/jsts/org/locationtech/jts/algorithm/RectangleLineIntersector.js +42 -0
  105. package/dist/lib/jsts/org/locationtech/jts/algorithm/RobustDeterminant.js +196 -0
  106. package/dist/lib/jsts/org/locationtech/jts/algorithm/RobustLineIntersector.js +155 -0
  107. package/dist/lib/jsts/org/locationtech/jts/algorithm/construct/LargestEmptyCircle.js +193 -0
  108. package/dist/lib/jsts/org/locationtech/jts/algorithm/construct/MaximumInscribedCircle.js +167 -0
  109. package/dist/lib/jsts/org/locationtech/jts/algorithm/distance/DiscreteHausdorffDistance.js +128 -0
  110. package/dist/lib/jsts/org/locationtech/jts/algorithm/distance/DistanceToPoint.js +46 -0
  111. package/dist/lib/jsts/org/locationtech/jts/algorithm/distance/PointPairDistance.js +70 -0
  112. package/dist/lib/jsts/org/locationtech/jts/algorithm/distance_module.js +9 -0
  113. package/dist/lib/jsts/org/locationtech/jts/algorithm/locate/IndexedPointInAreaLocator.js +96 -0
  114. package/dist/lib/jsts/org/locationtech/jts/algorithm/locate/PointOnGeometryLocator.js +3 -0
  115. package/dist/lib/jsts/org/locationtech/jts/algorithm/locate/SimplePointInAreaLocator.js +66 -0
  116. package/dist/lib/jsts/org/locationtech/jts/algorithm/locate.js +9 -0
  117. package/dist/lib/jsts/org/locationtech/jts/algorithm/match/AreaSimilarityMeasure.js +11 -0
  118. package/dist/lib/jsts/org/locationtech/jts/algorithm/match/HausdorffSimilarityMeasure.js +23 -0
  119. package/dist/lib/jsts/org/locationtech/jts/algorithm/match/SimilarityMeasure.js +3 -0
  120. package/dist/lib/jsts/org/locationtech/jts/algorithm/match/SimilarityMeasureCombiner.js +5 -0
  121. package/dist/lib/jsts/org/locationtech/jts/algorithm/match.js +11 -0
  122. package/dist/lib/jsts/org/locationtech/jts/algorithm.js +41 -0
  123. package/dist/lib/jsts/org/locationtech/jts/densify/Densifier.js +85 -0
  124. package/dist/lib/jsts/org/locationtech/jts/densify.js +5 -0
  125. package/dist/lib/jsts/org/locationtech/jts/dissolve/DissolveEdgeGraph.js +10 -0
  126. package/dist/lib/jsts/org/locationtech/jts/dissolve/DissolveHalfEdge.js +18 -0
  127. package/dist/lib/jsts/org/locationtech/jts/dissolve/LineDissolver.js +148 -0
  128. package/dist/lib/jsts/org/locationtech/jts/dissolve.js +5 -0
  129. package/dist/lib/jsts/org/locationtech/jts/edgegraph/EdgeGraph.js +59 -0
  130. package/dist/lib/jsts/org/locationtech/jts/edgegraph/EdgeGraphBuilder.js +49 -0
  131. package/dist/lib/jsts/org/locationtech/jts/edgegraph/HalfEdge.js +185 -0
  132. package/dist/lib/jsts/org/locationtech/jts/edgegraph/MarkHalfEdge.js +38 -0
  133. package/dist/lib/jsts/org/locationtech/jts/geom/Coordinate.js +219 -0
  134. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateArrays.js +245 -0
  135. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateFilter.js +3 -0
  136. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateList.js +130 -0
  137. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequence.js +53 -0
  138. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequenceComparator.js +67 -0
  139. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequenceFactory.js +18 -0
  140. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequenceFilter.js +5 -0
  141. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequences.js +139 -0
  142. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateXY.js +66 -0
  143. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateXYM.js +83 -0
  144. package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateXYZM.js +78 -0
  145. package/dist/lib/jsts/org/locationtech/jts/geom/Coordinates.js +48 -0
  146. package/dist/lib/jsts/org/locationtech/jts/geom/Dimension.js +50 -0
  147. package/dist/lib/jsts/org/locationtech/jts/geom/Envelope.js +360 -0
  148. package/dist/lib/jsts/org/locationtech/jts/geom/Geometry.js +230 -0
  149. package/dist/lib/jsts/org/locationtech/jts/geom/GeometryCollection.js +211 -0
  150. package/dist/lib/jsts/org/locationtech/jts/geom/GeometryCollectionIterator.js +68 -0
  151. package/dist/lib/jsts/org/locationtech/jts/geom/GeometryComponentFilter.js +3 -0
  152. package/dist/lib/jsts/org/locationtech/jts/geom/GeometryFactory.js +267 -0
  153. package/dist/lib/jsts/org/locationtech/jts/geom/GeometryFilter.js +3 -0
  154. package/dist/lib/jsts/org/locationtech/jts/geom/IntersectionMatrix.js +212 -0
  155. package/dist/lib/jsts/org/locationtech/jts/geom/LineSegment.js +273 -0
  156. package/dist/lib/jsts/org/locationtech/jts/geom/LineString.js +210 -0
  157. package/dist/lib/jsts/org/locationtech/jts/geom/Lineal.js +1 -0
  158. package/dist/lib/jsts/org/locationtech/jts/geom/LinearRing.js +48 -0
  159. package/dist/lib/jsts/org/locationtech/jts/geom/Location.js +20 -0
  160. package/dist/lib/jsts/org/locationtech/jts/geom/MultiLineString.js +65 -0
  161. package/dist/lib/jsts/org/locationtech/jts/geom/MultiPoint.js +61 -0
  162. package/dist/lib/jsts/org/locationtech/jts/geom/MultiPolygon.js +62 -0
  163. package/dist/lib/jsts/org/locationtech/jts/geom/OctagonalEnvelope.js +273 -0
  164. package/dist/lib/jsts/org/locationtech/jts/geom/Point.js +140 -0
  165. package/dist/lib/jsts/org/locationtech/jts/geom/Polygon.js +275 -0
  166. package/dist/lib/jsts/org/locationtech/jts/geom/Polygonal.js +1 -0
  167. package/dist/lib/jsts/org/locationtech/jts/geom/PrecisionModel.js +133 -0
  168. package/dist/lib/jsts/org/locationtech/jts/geom/Puntal.js +1 -0
  169. package/dist/lib/jsts/org/locationtech/jts/geom/TopologyException.js +13 -0
  170. package/dist/lib/jsts/org/locationtech/jts/geom/Triangle.js +158 -0
  171. package/dist/lib/jsts/org/locationtech/jts/geom/impl/CoordinateArraySequence.js +177 -0
  172. package/dist/lib/jsts/org/locationtech/jts/geom/impl/CoordinateArraySequenceFactory.js +44 -0
  173. package/dist/lib/jsts/org/locationtech/jts/geom/impl/PackedCoordinateSequenceFactory.js +98 -0
  174. package/dist/lib/jsts/org/locationtech/jts/geom/prep/AbstractPreparedPolygonContains.js +60 -0
  175. package/dist/lib/jsts/org/locationtech/jts/geom/prep/BasicPreparedGeometry.js +74 -0
  176. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedGeometry.js +13 -0
  177. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedGeometryFactory.js +19 -0
  178. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedLineString.js +23 -0
  179. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedLineStringIntersects.js +37 -0
  180. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPoint.js +15 -0
  181. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygon.js +57 -0
  182. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonContains.js +22 -0
  183. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonContainsProperly.js +30 -0
  184. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonCovers.js +23 -0
  185. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonIntersects.js +31 -0
  186. package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonPredicate.js +60 -0
  187. package/dist/lib/jsts/org/locationtech/jts/geom/util/AffineTransformation.js +393 -0
  188. package/dist/lib/jsts/org/locationtech/jts/geom/util/AffineTransformationBuilder.js +52 -0
  189. package/dist/lib/jsts/org/locationtech/jts/geom/util/AffineTransformationFactory.js +55 -0
  190. package/dist/lib/jsts/org/locationtech/jts/geom/util/ComponentCoordinateExtracter.js +25 -0
  191. package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryCollectionMapper.js +24 -0
  192. package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryCombiner.js +71 -0
  193. package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryEditor.js +138 -0
  194. package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryExtracter.js +41 -0
  195. package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryMapper.js +28 -0
  196. package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryTransformer.js +125 -0
  197. package/dist/lib/jsts/org/locationtech/jts/geom/util/LineStringExtracter.js +37 -0
  198. package/dist/lib/jsts/org/locationtech/jts/geom/util/LinearComponentExtracter.js +88 -0
  199. package/dist/lib/jsts/org/locationtech/jts/geom/util/NoninvertibleTransformationException.js +15 -0
  200. package/dist/lib/jsts/org/locationtech/jts/geom/util/PointExtracter.js +38 -0
  201. package/dist/lib/jsts/org/locationtech/jts/geom/util/PolygonExtracter.js +34 -0
  202. package/dist/lib/jsts/org/locationtech/jts/geom/util/ShortCircuitedGeometryVisitor.js +23 -0
  203. package/dist/lib/jsts/org/locationtech/jts/geom/util/SineStarFactory.js +62 -0
  204. package/dist/lib/jsts/org/locationtech/jts/geom/util.js +35 -0
  205. package/dist/lib/jsts/org/locationtech/jts/geom.js +51 -0
  206. package/dist/lib/jsts/org/locationtech/jts/geomgraph/Depth.js +85 -0
  207. package/dist/lib/jsts/org/locationtech/jts/geomgraph/DirectedEdge.js +143 -0
  208. package/dist/lib/jsts/org/locationtech/jts/geomgraph/DirectedEdgeStar.js +233 -0
  209. package/dist/lib/jsts/org/locationtech/jts/geomgraph/Edge.js +190 -0
  210. package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeEnd.js +94 -0
  211. package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeEndStar.js +173 -0
  212. package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeIntersection.js +52 -0
  213. package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeIntersectionList.js +74 -0
  214. package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeList.js +57 -0
  215. package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeNodingValidator.js +28 -0
  216. package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeRing.js +160 -0
  217. package/dist/lib/jsts/org/locationtech/jts/geomgraph/GeometryGraph.js +238 -0
  218. package/dist/lib/jsts/org/locationtech/jts/geomgraph/GraphComponent.js +49 -0
  219. package/dist/lib/jsts/org/locationtech/jts/geomgraph/Label.js +132 -0
  220. package/dist/lib/jsts/org/locationtech/jts/geomgraph/Node.js +91 -0
  221. package/dist/lib/jsts/org/locationtech/jts/geomgraph/NodeFactory.js +6 -0
  222. package/dist/lib/jsts/org/locationtech/jts/geomgraph/NodeMap.js +64 -0
  223. package/dist/lib/jsts/org/locationtech/jts/geomgraph/PlanarGraph.js +138 -0
  224. package/dist/lib/jsts/org/locationtech/jts/geomgraph/Position.js +10 -0
  225. package/dist/lib/jsts/org/locationtech/jts/geomgraph/Quadrant.js +51 -0
  226. package/dist/lib/jsts/org/locationtech/jts/geomgraph/TopologyLocation.js +122 -0
  227. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/EdgeSetIntersector.js +1 -0
  228. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/MonotoneChain.js +15 -0
  229. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/MonotoneChainEdge.js +66 -0
  230. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/MonotoneChainIndexer.js +45 -0
  231. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SegmentIntersector.js +109 -0
  232. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SimpleEdgeSetIntersector.js +45 -0
  233. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SimpleMCSweepLineIntersector.js +92 -0
  234. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SimpleSweepLineIntersector.js +91 -0
  235. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SweepLineEvent.js +61 -0
  236. package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SweepLineSegment.js +27 -0
  237. package/dist/lib/jsts/org/locationtech/jts/geomgraph.js +5 -0
  238. package/dist/lib/jsts/org/locationtech/jts/index/ArrayListVisitor.js +19 -0
  239. package/dist/lib/jsts/org/locationtech/jts/index/ItemVisitor.js +3 -0
  240. package/dist/lib/jsts/org/locationtech/jts/index/SpatialIndex.js +11 -0
  241. package/dist/lib/jsts/org/locationtech/jts/index/bintree/Bintree.js +69 -0
  242. package/dist/lib/jsts/org/locationtech/jts/index/bintree/Interval.js +67 -0
  243. package/dist/lib/jsts/org/locationtech/jts/index/bintree/Key.js +42 -0
  244. package/dist/lib/jsts/org/locationtech/jts/index/bintree/Node.js +89 -0
  245. package/dist/lib/jsts/org/locationtech/jts/index/bintree/NodeBase.js +93 -0
  246. package/dist/lib/jsts/org/locationtech/jts/index/bintree/Root.js +33 -0
  247. package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChain.js +99 -0
  248. package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChainBuilder.js +41 -0
  249. package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChainOverlapAction.js +20 -0
  250. package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChainSelectAction.js +18 -0
  251. package/dist/lib/jsts/org/locationtech/jts/index/hprtree/HPRtree.js +245 -0
  252. package/dist/lib/jsts/org/locationtech/jts/index/hprtree/HilbertEncoder.js +29 -0
  253. package/dist/lib/jsts/org/locationtech/jts/index/hprtree/Item.js +21 -0
  254. package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/IntervalRTreeBranchNode.js +26 -0
  255. package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/IntervalRTreeLeafNode.js +18 -0
  256. package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/IntervalRTreeNode.js +41 -0
  257. package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/SortedPackedIntervalRTree.js +66 -0
  258. package/dist/lib/jsts/org/locationtech/jts/index/kdtree/KdNode.js +61 -0
  259. package/dist/lib/jsts/org/locationtech/jts/index/kdtree/KdNodeVisitor.js +3 -0
  260. package/dist/lib/jsts/org/locationtech/jts/index/kdtree/KdTree.js +190 -0
  261. package/dist/lib/jsts/org/locationtech/jts/index/kdtree.js +5 -0
  262. package/dist/lib/jsts/org/locationtech/jts/index/quadtree/DoubleBits.js +84 -0
  263. package/dist/lib/jsts/org/locationtech/jts/index/quadtree/IntervalSize.js +12 -0
  264. package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Key.js +52 -0
  265. package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Node.js +110 -0
  266. package/dist/lib/jsts/org/locationtech/jts/index/quadtree/NodeBase.js +134 -0
  267. package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Quadtree.js +78 -0
  268. package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Root.js +35 -0
  269. package/dist/lib/jsts/org/locationtech/jts/index/quadtree.js +5 -0
  270. package/dist/lib/jsts/org/locationtech/jts/index/strtree/AbstractNode.js +43 -0
  271. package/dist/lib/jsts/org/locationtech/jts/index/strtree/AbstractSTRtree.js +281 -0
  272. package/dist/lib/jsts/org/locationtech/jts/index/strtree/Boundable.js +3 -0
  273. package/dist/lib/jsts/org/locationtech/jts/index/strtree/BoundablePair.js +89 -0
  274. package/dist/lib/jsts/org/locationtech/jts/index/strtree/BoundablePairDistanceComparator.js +34 -0
  275. package/dist/lib/jsts/org/locationtech/jts/index/strtree/EnvelopeDistance.js +48 -0
  276. package/dist/lib/jsts/org/locationtech/jts/index/strtree/GeometryItemDistance.js +13 -0
  277. package/dist/lib/jsts/org/locationtech/jts/index/strtree/Interval.js +37 -0
  278. package/dist/lib/jsts/org/locationtech/jts/index/strtree/ItemBoundable.js +23 -0
  279. package/dist/lib/jsts/org/locationtech/jts/index/strtree/ItemDistance.js +3 -0
  280. package/dist/lib/jsts/org/locationtech/jts/index/strtree/SIRtree.js +72 -0
  281. package/dist/lib/jsts/org/locationtech/jts/index/strtree/STRtree.js +284 -0
  282. package/dist/lib/jsts/org/locationtech/jts/index/strtree.js +5 -0
  283. package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineEvent.js +50 -0
  284. package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineIndex.js +49 -0
  285. package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineInterval.js +28 -0
  286. package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineOverlapAction.js +3 -0
  287. package/dist/lib/jsts/org/locationtech/jts/index.js +5 -0
  288. package/dist/lib/jsts/org/locationtech/jts/io/GeoJSONParser.js +420 -0
  289. package/dist/lib/jsts/org/locationtech/jts/io/GeoJSONReader.js +37 -0
  290. package/dist/lib/jsts/org/locationtech/jts/io/GeoJSONWriter.js +36 -0
  291. package/dist/lib/jsts/org/locationtech/jts/io/OL3Parser.js +189 -0
  292. package/dist/lib/jsts/org/locationtech/jts/io/WKTParser.js +784 -0
  293. package/dist/lib/jsts/org/locationtech/jts/io/WKTReader.js +42 -0
  294. package/dist/lib/jsts/org/locationtech/jts/io/WKTWriter.js +55 -0
  295. package/dist/lib/jsts/org/locationtech/jts/io.js +13 -0
  296. package/dist/lib/jsts/org/locationtech/jts/linearref/ExtractLineByLocation.js +64 -0
  297. package/dist/lib/jsts/org/locationtech/jts/linearref/LengthIndexOfPoint.js +61 -0
  298. package/dist/lib/jsts/org/locationtech/jts/linearref/LengthIndexedLine.js +78 -0
  299. package/dist/lib/jsts/org/locationtech/jts/linearref/LengthLocationMap.js +98 -0
  300. package/dist/lib/jsts/org/locationtech/jts/linearref/LinearGeometryBuilder.js +71 -0
  301. package/dist/lib/jsts/org/locationtech/jts/linearref/LinearIterator.js +76 -0
  302. package/dist/lib/jsts/org/locationtech/jts/linearref/LinearLocation.js +201 -0
  303. package/dist/lib/jsts/org/locationtech/jts/linearref/LocationIndexOfLine.js +29 -0
  304. package/dist/lib/jsts/org/locationtech/jts/linearref/LocationIndexOfPoint.js +64 -0
  305. package/dist/lib/jsts/org/locationtech/jts/linearref/LocationIndexedLine.js +60 -0
  306. package/dist/lib/jsts/org/locationtech/jts/linearref.js +15 -0
  307. package/dist/lib/jsts/org/locationtech/jts/math/DD.js +608 -0
  308. package/dist/lib/jsts/org/locationtech/jts/math/MathUtil.js +55 -0
  309. package/dist/lib/jsts/org/locationtech/jts/math/Matrix.js +43 -0
  310. package/dist/lib/jsts/org/locationtech/jts/math/Plane3D.js +36 -0
  311. package/dist/lib/jsts/org/locationtech/jts/math/Vector2D.js +172 -0
  312. package/dist/lib/jsts/org/locationtech/jts/math/Vector3D.js +104 -0
  313. package/dist/lib/jsts/org/locationtech/jts/monkey.js +146 -0
  314. package/dist/lib/jsts/org/locationtech/jts/noding/BasicSegmentString.js +44 -0
  315. package/dist/lib/jsts/org/locationtech/jts/noding/FastNodingValidator.js +60 -0
  316. package/dist/lib/jsts/org/locationtech/jts/noding/FastSegmentSetIntersectionFinder.js +26 -0
  317. package/dist/lib/jsts/org/locationtech/jts/noding/InteriorIntersectionFinderAdder.js +40 -0
  318. package/dist/lib/jsts/org/locationtech/jts/noding/IntersectionAdder.js +88 -0
  319. package/dist/lib/jsts/org/locationtech/jts/noding/IteratedNoder.js +53 -0
  320. package/dist/lib/jsts/org/locationtech/jts/noding/MCIndexNoder.js +85 -0
  321. package/dist/lib/jsts/org/locationtech/jts/noding/MCIndexSegmentSetMutualIntersector.js +82 -0
  322. package/dist/lib/jsts/org/locationtech/jts/noding/NodableSegmentString.js +7 -0
  323. package/dist/lib/jsts/org/locationtech/jts/noding/NodedSegmentString.js +96 -0
  324. package/dist/lib/jsts/org/locationtech/jts/noding/Noder.js +4 -0
  325. package/dist/lib/jsts/org/locationtech/jts/noding/NodingIntersectionFinder.js +139 -0
  326. package/dist/lib/jsts/org/locationtech/jts/noding/NodingValidator.js +96 -0
  327. package/dist/lib/jsts/org/locationtech/jts/noding/Octant.js +31 -0
  328. package/dist/lib/jsts/org/locationtech/jts/noding/OrientedCoordinateArray.js +44 -0
  329. package/dist/lib/jsts/org/locationtech/jts/noding/ScaledNoder.js +82 -0
  330. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentIntersectionDetector.js +80 -0
  331. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentIntersector.js +4 -0
  332. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentNode.js +51 -0
  333. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentNodeList.js +199 -0
  334. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentPointComparator.js +40 -0
  335. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentSetMutualIntersector.js +3 -0
  336. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentString.js +8 -0
  337. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentStringDissolver.js +53 -0
  338. package/dist/lib/jsts/org/locationtech/jts/noding/SegmentStringUtil.js +44 -0
  339. package/dist/lib/jsts/org/locationtech/jts/noding/SimpleNoder.js +33 -0
  340. package/dist/lib/jsts/org/locationtech/jts/noding/SimpleSegmentSetMutualIntersector.js +34 -0
  341. package/dist/lib/jsts/org/locationtech/jts/noding/SinglePassNoder.js +19 -0
  342. package/dist/lib/jsts/org/locationtech/jts/noding/snapround/GeometryNoder.js +59 -0
  343. package/dist/lib/jsts/org/locationtech/jts/noding/snapround/HotPixel.js +120 -0
  344. package/dist/lib/jsts/org/locationtech/jts/noding/snapround/MCIndexPointSnapper.js +65 -0
  345. package/dist/lib/jsts/org/locationtech/jts/noding/snapround/MCIndexSnapRounder.js +89 -0
  346. package/dist/lib/jsts/org/locationtech/jts/noding/snapround/SimpleSnapRounder.js +105 -0
  347. package/dist/lib/jsts/org/locationtech/jts/noding.js +9 -0
  348. package/dist/lib/jsts/org/locationtech/jts/operation/BoundaryOp.js +104 -0
  349. package/dist/lib/jsts/org/locationtech/jts/operation/GeometryGraphOperation.js +36 -0
  350. package/dist/lib/jsts/org/locationtech/jts/operation/IsSimpleOp.js +165 -0
  351. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferBuilder.js +148 -0
  352. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferInputLineSimplifier.js +96 -0
  353. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferOp.js +126 -0
  354. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferParameters.js +87 -0
  355. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferSubgraph.js +150 -0
  356. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetCurveBuilder.js +170 -0
  357. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetCurveSetBuilder.js +118 -0
  358. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetSegmentGenerator.js +269 -0
  359. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetSegmentString.js +62 -0
  360. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/RightmostEdgeFinder.js +91 -0
  361. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/SubgraphDepthLocater.js +100 -0
  362. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/VariableBuffer.js +226 -0
  363. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/BufferCurveMaximumDistanceFinder.js +92 -0
  364. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/BufferDistanceValidator.js +107 -0
  365. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/BufferResultValidator.js +116 -0
  366. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/DistanceToPointFinder.js +46 -0
  367. package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/PointPairDistance.js +66 -0
  368. package/dist/lib/jsts/org/locationtech/jts/operation/buffer.js +7 -0
  369. package/dist/lib/jsts/org/locationtech/jts/operation/distance/ConnectedElementLocationFilter.js +28 -0
  370. package/dist/lib/jsts/org/locationtech/jts/operation/distance/ConnectedElementPointFilter.js +26 -0
  371. package/dist/lib/jsts/org/locationtech/jts/operation/distance/DistanceOp.js +231 -0
  372. package/dist/lib/jsts/org/locationtech/jts/operation/distance/FacetSequence.js +150 -0
  373. package/dist/lib/jsts/org/locationtech/jts/operation/distance/FacetSequenceTreeBuilder.js +50 -0
  374. package/dist/lib/jsts/org/locationtech/jts/operation/distance/GeometryLocation.js +36 -0
  375. package/dist/lib/jsts/org/locationtech/jts/operation/distance/IndexedFacetDistance.js +68 -0
  376. package/dist/lib/jsts/org/locationtech/jts/operation/distance.js +5 -0
  377. package/dist/lib/jsts/org/locationtech/jts/operation/distance3d/AxisPlaneCoordinateSequence.js +82 -0
  378. package/dist/lib/jsts/org/locationtech/jts/operation/distance3d/Distance3DOp.js +299 -0
  379. package/dist/lib/jsts/org/locationtech/jts/operation/distance3d/PlanarPolygon3D.js +110 -0
  380. package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/EdgeString.js +42 -0
  381. package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMergeDirectedEdge.js +22 -0
  382. package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMergeEdge.js +15 -0
  383. package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMergeGraph.js +34 -0
  384. package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMerger.js +108 -0
  385. package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineSequencer.js +245 -0
  386. package/dist/lib/jsts/org/locationtech/jts/operation/linemerge.js +7 -0
  387. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/ConsistentPolygonRingChecker.js +69 -0
  388. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/EdgeSetNoder.js +28 -0
  389. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/LineBuilder.js +89 -0
  390. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/MaximalEdgeRing.js +39 -0
  391. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/MinimalEdgeRing.js +17 -0
  392. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/OverlayNodeFactory.js +11 -0
  393. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/OverlayOp.js +312 -0
  394. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/PointBuilder.js +39 -0
  395. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/PolygonBuilder.js +144 -0
  396. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/GeometrySnapper.js +118 -0
  397. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/LineStringSnapper.js +87 -0
  398. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/SnapIfNeededOverlayOp.js +54 -0
  399. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/SnapOverlayOp.js +70 -0
  400. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap.js +7 -0
  401. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/validate/FuzzyPointLocator.js +71 -0
  402. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/validate/OffsetPointGenerator.js +51 -0
  403. package/dist/lib/jsts/org/locationtech/jts/operation/overlay/validate/OverlayResultValidator.js +81 -0
  404. package/dist/lib/jsts/org/locationtech/jts/operation/overlay.js +7 -0
  405. package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/EdgeRing.js +235 -0
  406. package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/HoleAssigner.js +44 -0
  407. package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/PolygonizeDirectedEdge.js +35 -0
  408. package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/PolygonizeEdge.js +15 -0
  409. package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/PolygonizeGraph.js +247 -0
  410. package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/Polygonizer.js +170 -0
  411. package/dist/lib/jsts/org/locationtech/jts/operation/polygonize.js +5 -0
  412. package/dist/lib/jsts/org/locationtech/jts/operation/predicate/RectangleContains.js +62 -0
  413. package/dist/lib/jsts/org/locationtech/jts/operation/predicate/RectangleIntersects.js +151 -0
  414. package/dist/lib/jsts/org/locationtech/jts/operation/relate/EdgeEndBuilder.js +56 -0
  415. package/dist/lib/jsts/org/locationtech/jts/operation/relate/EdgeEndBundle.js +93 -0
  416. package/dist/lib/jsts/org/locationtech/jts/operation/relate/EdgeEndBundleStar.js +22 -0
  417. package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateComputer.js +168 -0
  418. package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateNode.js +17 -0
  419. package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateNodeFactory.js +11 -0
  420. package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateNodeGraph.js +48 -0
  421. package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateOp.js +101 -0
  422. package/dist/lib/jsts/org/locationtech/jts/operation/relate.js +5 -0
  423. package/dist/lib/jsts/org/locationtech/jts/operation/union/CascadedPolygonUnion.js +124 -0
  424. package/dist/lib/jsts/org/locationtech/jts/operation/union/InputExtracter.js +93 -0
  425. package/dist/lib/jsts/org/locationtech/jts/operation/union/OverlapUnion.js +146 -0
  426. package/dist/lib/jsts/org/locationtech/jts/operation/union/PointGeometryUnion.js +42 -0
  427. package/dist/lib/jsts/org/locationtech/jts/operation/union/UnaryUnionOp.js +97 -0
  428. package/dist/lib/jsts/org/locationtech/jts/operation/union/UnionInteracting.js +70 -0
  429. package/dist/lib/jsts/org/locationtech/jts/operation/union/UnionOp.js +22 -0
  430. package/dist/lib/jsts/org/locationtech/jts/operation/union.js +5 -0
  431. package/dist/lib/jsts/org/locationtech/jts/operation/valid/ConnectedInteriorTester.js +118 -0
  432. package/dist/lib/jsts/org/locationtech/jts/operation/valid/ConsistentAreaTester.js +50 -0
  433. package/dist/lib/jsts/org/locationtech/jts/operation/valid/IndexedNestedRingTester.js +56 -0
  434. package/dist/lib/jsts/org/locationtech/jts/operation/valid/IsValidOp.js +323 -0
  435. package/dist/lib/jsts/org/locationtech/jts/operation/valid/RepeatedPointTester.js +48 -0
  436. package/dist/lib/jsts/org/locationtech/jts/operation/valid/TopologyValidationError.js +44 -0
  437. package/dist/lib/jsts/org/locationtech/jts/operation/valid.js +7 -0
  438. package/dist/lib/jsts/org/locationtech/jts/operation.js +23 -0
  439. package/dist/lib/jsts/org/locationtech/jts/planargraph/DirectedEdge.js +99 -0
  440. package/dist/lib/jsts/org/locationtech/jts/planargraph/DirectedEdgeStar.js +75 -0
  441. package/dist/lib/jsts/org/locationtech/jts/planargraph/Edge.js +46 -0
  442. package/dist/lib/jsts/org/locationtech/jts/planargraph/GraphComponent.js +53 -0
  443. package/dist/lib/jsts/org/locationtech/jts/planargraph/Node.js +55 -0
  444. package/dist/lib/jsts/org/locationtech/jts/planargraph/NodeMap.js +25 -0
  445. package/dist/lib/jsts/org/locationtech/jts/planargraph/PlanarGraph.js +96 -0
  446. package/dist/lib/jsts/org/locationtech/jts/planargraph/Subgraph.js +39 -0
  447. package/dist/lib/jsts/org/locationtech/jts/planargraph/algorithm/ConnectedSubgraphFinder.js +48 -0
  448. package/dist/lib/jsts/org/locationtech/jts/precision/CommonBits.js +86 -0
  449. package/dist/lib/jsts/org/locationtech/jts/precision/CommonBitsOp.js +58 -0
  450. package/dist/lib/jsts/org/locationtech/jts/precision/CommonBitsRemover.js +81 -0
  451. package/dist/lib/jsts/org/locationtech/jts/precision/CoordinatePrecisionReducerFilter.js +24 -0
  452. package/dist/lib/jsts/org/locationtech/jts/precision/EnhancedPrecisionOp.js +109 -0
  453. package/dist/lib/jsts/org/locationtech/jts/precision/GeometryPrecisionReducer.js +80 -0
  454. package/dist/lib/jsts/org/locationtech/jts/precision/MinimumClearance.js +125 -0
  455. package/dist/lib/jsts/org/locationtech/jts/precision/PrecisionReducerCoordinateOperation.js +44 -0
  456. package/dist/lib/jsts/org/locationtech/jts/precision/SimpleMinimumClearance.js +114 -0
  457. package/dist/lib/jsts/org/locationtech/jts/precision.js +17 -0
  458. package/dist/lib/jsts/org/locationtech/jts/shape/GeometricShapeBuilder.js +50 -0
  459. package/dist/lib/jsts/org/locationtech/jts/shape/fractal/HilbertCode.js +109 -0
  460. package/dist/lib/jsts/org/locationtech/jts/shape/fractal/HilbertCurveBuilder.js +44 -0
  461. package/dist/lib/jsts/org/locationtech/jts/shape/fractal/KochSnowflakeBuilder.js +65 -0
  462. package/dist/lib/jsts/org/locationtech/jts/shape/fractal/MortonCode.js +49 -0
  463. package/dist/lib/jsts/org/locationtech/jts/shape/fractal/MortonCurveBuilder.js +43 -0
  464. package/dist/lib/jsts/org/locationtech/jts/shape/fractal/SierpinskiCarpetBuilder.js +52 -0
  465. package/dist/lib/jsts/org/locationtech/jts/shape/random/RandomPointsBuilder.js +60 -0
  466. package/dist/lib/jsts/org/locationtech/jts/shape/random/RandomPointsInGridBuilder.js +71 -0
  467. package/dist/lib/jsts/org/locationtech/jts/simplify/DouglasPeuckerLineSimplifier.js +60 -0
  468. package/dist/lib/jsts/org/locationtech/jts/simplify/DouglasPeuckerSimplifier.js +81 -0
  469. package/dist/lib/jsts/org/locationtech/jts/simplify/LineSegmentIndex.js +58 -0
  470. package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLineSegment.js +26 -0
  471. package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLineString.js +71 -0
  472. package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLineStringSimplifier.js +124 -0
  473. package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLinesSimplifier.js +25 -0
  474. package/dist/lib/jsts/org/locationtech/jts/simplify/TopologyPreservingSimplifier.js +79 -0
  475. package/dist/lib/jsts/org/locationtech/jts/simplify/VWLineSimplifier.js +126 -0
  476. package/dist/lib/jsts/org/locationtech/jts/simplify/VWSimplifier.js +81 -0
  477. package/dist/lib/jsts/org/locationtech/jts/simplify.js +9 -0
  478. package/dist/lib/jsts/org/locationtech/jts/triangulate/ConformingDelaunayTriangulationBuilder.js +90 -0
  479. package/dist/lib/jsts/org/locationtech/jts/triangulate/ConformingDelaunayTriangulator.js +215 -0
  480. package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintEnforcementException.js +27 -0
  481. package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintSplitPointFinder.js +3 -0
  482. package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintVertex.js +32 -0
  483. package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintVertexFactory.js +3 -0
  484. package/dist/lib/jsts/org/locationtech/jts/triangulate/DelaunayTriangulationBuilder.js +80 -0
  485. package/dist/lib/jsts/org/locationtech/jts/triangulate/IncrementalDelaunayTriangulator.js +46 -0
  486. package/dist/lib/jsts/org/locationtech/jts/triangulate/MidpointSplitPointFinder.js +12 -0
  487. package/dist/lib/jsts/org/locationtech/jts/triangulate/NonEncroachingSplitPointFinder.js +27 -0
  488. package/dist/lib/jsts/org/locationtech/jts/triangulate/Segment.js +73 -0
  489. package/dist/lib/jsts/org/locationtech/jts/triangulate/SplitSegment.js +51 -0
  490. package/dist/lib/jsts/org/locationtech/jts/triangulate/VertexTaggedGeometryDataMapper.js +44 -0
  491. package/dist/lib/jsts/org/locationtech/jts/triangulate/VoronoiDiagramBuilder.js +78 -0
  492. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/EdgeConnectedTriangleTraversal.js +35 -0
  493. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/LastFoundQuadEdgeLocator.js +31 -0
  494. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/LocateFailureException.js +32 -0
  495. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdge.js +142 -0
  496. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeLocator.js +3 -0
  497. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeSubdivision.js +443 -0
  498. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeTriangle.js +184 -0
  499. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeUtil.js +12 -0
  500. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/TraversalVisitor.js +3 -0
  501. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/TrianglePredicate.js +106 -0
  502. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/TriangleVisitor.js +3 -0
  503. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/Vertex.js +199 -0
  504. package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge.js +5 -0
  505. package/dist/lib/jsts/org/locationtech/jts/triangulate.js +11 -0
  506. package/dist/lib/jsts/org/locationtech/jts/util/Assert.js +37 -0
  507. package/dist/lib/jsts/org/locationtech/jts/util/AssertionFailedException.js +15 -0
  508. package/dist/lib/jsts/org/locationtech/jts/util/CollectionUtil.js +27 -0
  509. package/dist/lib/jsts/org/locationtech/jts/util/CoordinateArrayFilter.js +21 -0
  510. package/dist/lib/jsts/org/locationtech/jts/util/CoordinateCountFilter.js +18 -0
  511. package/dist/lib/jsts/org/locationtech/jts/util/GeometricShapeFactory.js +258 -0
  512. package/dist/lib/jsts/org/locationtech/jts/util/IntArrayList.js +42 -0
  513. package/dist/lib/jsts/org/locationtech/jts/util/Memory.js +41 -0
  514. package/dist/lib/jsts/org/locationtech/jts/util/NumberUtil.js +5 -0
  515. package/dist/lib/jsts/org/locationtech/jts/util/ObjectCounter.js +36 -0
  516. package/dist/lib/jsts/org/locationtech/jts/util/PriorityQueue.js +56 -0
  517. package/dist/lib/jsts/org/locationtech/jts/util/StringUtil.js +63 -0
  518. package/dist/lib/jsts/org/locationtech/jts/util/TestBuilderProxy.js +33 -0
  519. package/dist/lib/jsts/org/locationtech/jts/util/UniqueCoordinateArrayFilter.js +31 -0
  520. package/dist/lib/jsts/org/locationtech/jts/util.js +21 -0
  521. package/dist/lib/jsts/package.json +66 -0
  522. package/dist/mirage2d.cjs.js +1 -1
  523. package/dist/mirage2d.umd.js +1 -1
  524. package/package.json +1 -1
@@ -0,0 +1,14 @@
1
+ Animate GIFs in canvas.
2
+
3
+ - Loads GIF contents with XHR
4
+ - Decodes GIF frames and pixels with omggif
5
+ - Prepares canvas buffer for fast rendering
6
+ - Frame-by-frame animator
7
+
8
+ # Usage
9
+
10
+ ```html
11
+ <canvas class="example"></canvas>
12
+ <script src="gifler.js"></script>
13
+ <script>gifler('image.gif').animate('.example')</script>
14
+ ```