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.
- package/dist/lib/gifler/README.md +14 -0
- package/dist/lib/gifler/gifler.js +1051 -0
- package/dist/lib/gifler/gifler.min.js +2 -0
- package/dist/lib/gifler/metalsmith-watch.json +33 -0
- package/dist/lib/gifler/metalsmith.json +25 -0
- package/dist/lib/gifler/package.json +33 -0
- package/dist/lib/gifler/site/_constants.less +29 -0
- package/dist/lib/gifler/site/_examples/rainbow.js +28 -0
- package/dist/lib/gifler/site/_examples/simple.js +1 -0
- package/dist/lib/gifler/site/_layout.jade +20 -0
- package/dist/lib/gifler/site/_nav.jade +8 -0
- package/dist/lib/gifler/site/assets/gif/_data.json +18 -0
- package/dist/lib/gifler/site/assets/gif/florian-8.gif +0 -0
- package/dist/lib/gifler/site/assets/gif/nyan.gif +0 -0
- package/dist/lib/gifler/site/assets/gif/pots.gif +0 -0
- package/dist/lib/gifler/site/assets/gif/run.gif +0 -0
- package/dist/lib/gifler/site/assets/gif/toroid.gif +0 -0
- package/dist/lib/gifler/site/assets/gifler.js +2 -0
- package/dist/lib/gifler/site/assets/lib/highlight.pack.js +1 -0
- package/dist/lib/gifler/site/assets/lib/monokai_sublime.css +154 -0
- package/dist/lib/gifler/site/examples.jade +43 -0
- package/dist/lib/gifler/site/examples.less +37 -0
- package/dist/lib/gifler/site/index.jade +49 -0
- package/dist/lib/gifler/site/index.less +63 -0
- package/dist/lib/gifler/site/theme.less +121 -0
- package/dist/lib/gifler/src/gifler.coffee +203 -0
- package/dist/lib/includeLibs.js +105 -0
- package/dist/lib/jsts/README.md +39 -0
- package/dist/lib/jsts/dist/jsts.js +33201 -0
- package/dist/lib/jsts/dist/jsts.js.map +1 -0
- package/dist/lib/jsts/dist/jsts.min.js +8 -0
- package/dist/lib/jsts/dist/jsts.min.js.map +1 -0
- package/dist/lib/jsts/hasInterface.js +3 -0
- package/dist/lib/jsts/java/io/ByteArrayOutputStream.js +1 -0
- package/dist/lib/jsts/java/io/IOException.js +3 -0
- package/dist/lib/jsts/java/io/InputStream.js +1 -0
- package/dist/lib/jsts/java/io/LineNumberReader.js +1 -0
- package/dist/lib/jsts/java/io/OutputStream.js +1 -0
- package/dist/lib/jsts/java/io/PrintStream.js +1 -0
- package/dist/lib/jsts/java/io/Serializable.js +1 -0
- package/dist/lib/jsts/java/io/StringReader.js +1 -0
- package/dist/lib/jsts/java/io/StringWriter.js +1 -0
- package/dist/lib/jsts/java/io/Writer.js +1 -0
- package/dist/lib/jsts/java/lang/Character.js +9 -0
- package/dist/lib/jsts/java/lang/Cloneable.js +1 -0
- package/dist/lib/jsts/java/lang/Comparable.js +1 -0
- package/dist/lib/jsts/java/lang/Double.js +301 -0
- package/dist/lib/jsts/java/lang/Exception.js +9 -0
- package/dist/lib/jsts/java/lang/IllegalArgumentException.js +8 -0
- package/dist/lib/jsts/java/lang/IndexOutOfBoundsException.js +8 -0
- package/dist/lib/jsts/java/lang/Integer.js +33 -0
- package/dist/lib/jsts/java/lang/Long.js +16 -0
- package/dist/lib/jsts/java/lang/RuntimeException.js +8 -0
- package/dist/lib/jsts/java/lang/StringBuffer.js +14 -0
- package/dist/lib/jsts/java/lang/StringBuilder.js +14 -0
- package/dist/lib/jsts/java/lang/System.js +15 -0
- package/dist/lib/jsts/java/lang/UnsupportedOperationException.js +8 -0
- package/dist/lib/jsts/java/text/DecimalFormat.js +1 -0
- package/dist/lib/jsts/java/text/DecimalFormatSymbols.js +1 -0
- package/dist/lib/jsts/java/util/ArrayList.js +109 -0
- package/dist/lib/jsts/java/util/Arrays.js +44 -0
- package/dist/lib/jsts/java/util/Collection.js +47 -0
- package/dist/lib/jsts/java/util/Collections.js +35 -0
- package/dist/lib/jsts/java/util/Comparator.js +1 -0
- package/dist/lib/jsts/java/util/EmptyStackException.js +8 -0
- package/dist/lib/jsts/java/util/HashMap.js +43 -0
- package/dist/lib/jsts/java/util/HashSet.js +87 -0
- package/dist/lib/jsts/java/util/Iterator.js +24 -0
- package/dist/lib/jsts/java/util/LinkedList.js +17 -0
- package/dist/lib/jsts/java/util/List.js +26 -0
- package/dist/lib/jsts/java/util/Map.js +51 -0
- package/dist/lib/jsts/java/util/NoSuchElementException.js +8 -0
- package/dist/lib/jsts/java/util/PriorityQueue.js +78 -0
- package/dist/lib/jsts/java/util/Set.js +19 -0
- package/dist/lib/jsts/java/util/SortedMap.js +6 -0
- package/dist/lib/jsts/java/util/SortedSet.js +6 -0
- package/dist/lib/jsts/java/util/Stack.js +103 -0
- package/dist/lib/jsts/java/util/TreeMap.js +262 -0
- package/dist/lib/jsts/java/util/TreeSet.js +82 -0
- package/dist/lib/jsts/org/locationtech/jts/JTSVersion.js +25 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/Angle.js +97 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/Area.js +50 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/BoundaryNodeRule.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/CGAlgorithms3D.js +58 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/CGAlgorithmsDD.js +78 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/Centroid.js +123 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/ConvexHull.js +244 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/Distance.js +55 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/HCoordinate.js +76 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPoint.js +18 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPointArea.js +194 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPointLine.js +74 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/InteriorPointPoint.js +46 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/Intersection.js +43 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/Length.js +23 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/LineIntersector.js +152 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/MinimumBoundingCircle.js +180 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/MinimumDiameter.js +162 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/NotRepresentableException.js +10 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/Orientation.js +86 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/PointLocation.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/PointLocator.js +111 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/RayCrossingCounter.js +87 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/RectangleLineIntersector.js +42 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/RobustDeterminant.js +196 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/RobustLineIntersector.js +155 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/construct/LargestEmptyCircle.js +193 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/construct/MaximumInscribedCircle.js +167 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/distance/DiscreteHausdorffDistance.js +128 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/distance/DistanceToPoint.js +46 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/distance/PointPairDistance.js +70 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/distance_module.js +9 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/locate/IndexedPointInAreaLocator.js +96 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/locate/PointOnGeometryLocator.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/locate/SimplePointInAreaLocator.js +66 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/locate.js +9 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/match/AreaSimilarityMeasure.js +11 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/match/HausdorffSimilarityMeasure.js +23 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/match/SimilarityMeasure.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/match/SimilarityMeasureCombiner.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm/match.js +11 -0
- package/dist/lib/jsts/org/locationtech/jts/algorithm.js +41 -0
- package/dist/lib/jsts/org/locationtech/jts/densify/Densifier.js +85 -0
- package/dist/lib/jsts/org/locationtech/jts/densify.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/dissolve/DissolveEdgeGraph.js +10 -0
- package/dist/lib/jsts/org/locationtech/jts/dissolve/DissolveHalfEdge.js +18 -0
- package/dist/lib/jsts/org/locationtech/jts/dissolve/LineDissolver.js +148 -0
- package/dist/lib/jsts/org/locationtech/jts/dissolve.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/edgegraph/EdgeGraph.js +59 -0
- package/dist/lib/jsts/org/locationtech/jts/edgegraph/EdgeGraphBuilder.js +49 -0
- package/dist/lib/jsts/org/locationtech/jts/edgegraph/HalfEdge.js +185 -0
- package/dist/lib/jsts/org/locationtech/jts/edgegraph/MarkHalfEdge.js +38 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Coordinate.js +219 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateArrays.js +245 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateFilter.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateList.js +130 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequence.js +53 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequenceComparator.js +67 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequenceFactory.js +18 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequenceFilter.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateSequences.js +139 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateXY.js +66 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateXYM.js +83 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/CoordinateXYZM.js +78 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Coordinates.js +48 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Dimension.js +50 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Envelope.js +360 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Geometry.js +230 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/GeometryCollection.js +211 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/GeometryCollectionIterator.js +68 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/GeometryComponentFilter.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/GeometryFactory.js +267 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/GeometryFilter.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/IntersectionMatrix.js +212 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/LineSegment.js +273 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/LineString.js +210 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Lineal.js +1 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/LinearRing.js +48 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Location.js +20 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/MultiLineString.js +65 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/MultiPoint.js +61 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/MultiPolygon.js +62 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/OctagonalEnvelope.js +273 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Point.js +140 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Polygon.js +275 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Polygonal.js +1 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/PrecisionModel.js +133 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Puntal.js +1 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/TopologyException.js +13 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/Triangle.js +158 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/impl/CoordinateArraySequence.js +177 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/impl/CoordinateArraySequenceFactory.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/impl/PackedCoordinateSequenceFactory.js +98 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/AbstractPreparedPolygonContains.js +60 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/BasicPreparedGeometry.js +74 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedGeometry.js +13 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedGeometryFactory.js +19 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedLineString.js +23 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedLineStringIntersects.js +37 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPoint.js +15 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygon.js +57 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonContains.js +22 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonContainsProperly.js +30 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonCovers.js +23 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonIntersects.js +31 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/prep/PreparedPolygonPredicate.js +60 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/AffineTransformation.js +393 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/AffineTransformationBuilder.js +52 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/AffineTransformationFactory.js +55 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/ComponentCoordinateExtracter.js +25 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryCollectionMapper.js +24 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryCombiner.js +71 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryEditor.js +138 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryExtracter.js +41 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryMapper.js +28 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/GeometryTransformer.js +125 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/LineStringExtracter.js +37 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/LinearComponentExtracter.js +88 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/NoninvertibleTransformationException.js +15 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/PointExtracter.js +38 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/PolygonExtracter.js +34 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/ShortCircuitedGeometryVisitor.js +23 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util/SineStarFactory.js +62 -0
- package/dist/lib/jsts/org/locationtech/jts/geom/util.js +35 -0
- package/dist/lib/jsts/org/locationtech/jts/geom.js +51 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/Depth.js +85 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/DirectedEdge.js +143 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/DirectedEdgeStar.js +233 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/Edge.js +190 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeEnd.js +94 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeEndStar.js +173 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeIntersection.js +52 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeIntersectionList.js +74 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeList.js +57 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeNodingValidator.js +28 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/EdgeRing.js +160 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/GeometryGraph.js +238 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/GraphComponent.js +49 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/Label.js +132 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/Node.js +91 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/NodeFactory.js +6 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/NodeMap.js +64 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/PlanarGraph.js +138 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/Position.js +10 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/Quadrant.js +51 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/TopologyLocation.js +122 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/EdgeSetIntersector.js +1 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/MonotoneChain.js +15 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/MonotoneChainEdge.js +66 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/MonotoneChainIndexer.js +45 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SegmentIntersector.js +109 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SimpleEdgeSetIntersector.js +45 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SimpleMCSweepLineIntersector.js +92 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SimpleSweepLineIntersector.js +91 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SweepLineEvent.js +61 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph/index/SweepLineSegment.js +27 -0
- package/dist/lib/jsts/org/locationtech/jts/geomgraph.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/index/ArrayListVisitor.js +19 -0
- package/dist/lib/jsts/org/locationtech/jts/index/ItemVisitor.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/index/SpatialIndex.js +11 -0
- package/dist/lib/jsts/org/locationtech/jts/index/bintree/Bintree.js +69 -0
- package/dist/lib/jsts/org/locationtech/jts/index/bintree/Interval.js +67 -0
- package/dist/lib/jsts/org/locationtech/jts/index/bintree/Key.js +42 -0
- package/dist/lib/jsts/org/locationtech/jts/index/bintree/Node.js +89 -0
- package/dist/lib/jsts/org/locationtech/jts/index/bintree/NodeBase.js +93 -0
- package/dist/lib/jsts/org/locationtech/jts/index/bintree/Root.js +33 -0
- package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChain.js +99 -0
- package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChainBuilder.js +41 -0
- package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChainOverlapAction.js +20 -0
- package/dist/lib/jsts/org/locationtech/jts/index/chain/MonotoneChainSelectAction.js +18 -0
- package/dist/lib/jsts/org/locationtech/jts/index/hprtree/HPRtree.js +245 -0
- package/dist/lib/jsts/org/locationtech/jts/index/hprtree/HilbertEncoder.js +29 -0
- package/dist/lib/jsts/org/locationtech/jts/index/hprtree/Item.js +21 -0
- package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/IntervalRTreeBranchNode.js +26 -0
- package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/IntervalRTreeLeafNode.js +18 -0
- package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/IntervalRTreeNode.js +41 -0
- package/dist/lib/jsts/org/locationtech/jts/index/intervalrtree/SortedPackedIntervalRTree.js +66 -0
- package/dist/lib/jsts/org/locationtech/jts/index/kdtree/KdNode.js +61 -0
- package/dist/lib/jsts/org/locationtech/jts/index/kdtree/KdNodeVisitor.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/index/kdtree/KdTree.js +190 -0
- package/dist/lib/jsts/org/locationtech/jts/index/kdtree.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree/DoubleBits.js +84 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree/IntervalSize.js +12 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Key.js +52 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Node.js +110 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree/NodeBase.js +134 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Quadtree.js +78 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree/Root.js +35 -0
- package/dist/lib/jsts/org/locationtech/jts/index/quadtree.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/AbstractNode.js +43 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/AbstractSTRtree.js +281 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/Boundable.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/BoundablePair.js +89 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/BoundablePairDistanceComparator.js +34 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/EnvelopeDistance.js +48 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/GeometryItemDistance.js +13 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/Interval.js +37 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/ItemBoundable.js +23 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/ItemDistance.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/SIRtree.js +72 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree/STRtree.js +284 -0
- package/dist/lib/jsts/org/locationtech/jts/index/strtree.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineEvent.js +50 -0
- package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineIndex.js +49 -0
- package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineInterval.js +28 -0
- package/dist/lib/jsts/org/locationtech/jts/index/sweepline/SweepLineOverlapAction.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/index.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/io/GeoJSONParser.js +420 -0
- package/dist/lib/jsts/org/locationtech/jts/io/GeoJSONReader.js +37 -0
- package/dist/lib/jsts/org/locationtech/jts/io/GeoJSONWriter.js +36 -0
- package/dist/lib/jsts/org/locationtech/jts/io/OL3Parser.js +189 -0
- package/dist/lib/jsts/org/locationtech/jts/io/WKTParser.js +784 -0
- package/dist/lib/jsts/org/locationtech/jts/io/WKTReader.js +42 -0
- package/dist/lib/jsts/org/locationtech/jts/io/WKTWriter.js +55 -0
- package/dist/lib/jsts/org/locationtech/jts/io.js +13 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/ExtractLineByLocation.js +64 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LengthIndexOfPoint.js +61 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LengthIndexedLine.js +78 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LengthLocationMap.js +98 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LinearGeometryBuilder.js +71 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LinearIterator.js +76 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LinearLocation.js +201 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LocationIndexOfLine.js +29 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LocationIndexOfPoint.js +64 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref/LocationIndexedLine.js +60 -0
- package/dist/lib/jsts/org/locationtech/jts/linearref.js +15 -0
- package/dist/lib/jsts/org/locationtech/jts/math/DD.js +608 -0
- package/dist/lib/jsts/org/locationtech/jts/math/MathUtil.js +55 -0
- package/dist/lib/jsts/org/locationtech/jts/math/Matrix.js +43 -0
- package/dist/lib/jsts/org/locationtech/jts/math/Plane3D.js +36 -0
- package/dist/lib/jsts/org/locationtech/jts/math/Vector2D.js +172 -0
- package/dist/lib/jsts/org/locationtech/jts/math/Vector3D.js +104 -0
- package/dist/lib/jsts/org/locationtech/jts/monkey.js +146 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/BasicSegmentString.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/FastNodingValidator.js +60 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/FastSegmentSetIntersectionFinder.js +26 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/InteriorIntersectionFinderAdder.js +40 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/IntersectionAdder.js +88 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/IteratedNoder.js +53 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/MCIndexNoder.js +85 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/MCIndexSegmentSetMutualIntersector.js +82 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/NodableSegmentString.js +7 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/NodedSegmentString.js +96 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/Noder.js +4 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/NodingIntersectionFinder.js +139 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/NodingValidator.js +96 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/Octant.js +31 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/OrientedCoordinateArray.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/ScaledNoder.js +82 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentIntersectionDetector.js +80 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentIntersector.js +4 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentNode.js +51 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentNodeList.js +199 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentPointComparator.js +40 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentSetMutualIntersector.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentString.js +8 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentStringDissolver.js +53 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SegmentStringUtil.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SimpleNoder.js +33 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SimpleSegmentSetMutualIntersector.js +34 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/SinglePassNoder.js +19 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/snapround/GeometryNoder.js +59 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/snapround/HotPixel.js +120 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/snapround/MCIndexPointSnapper.js +65 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/snapround/MCIndexSnapRounder.js +89 -0
- package/dist/lib/jsts/org/locationtech/jts/noding/snapround/SimpleSnapRounder.js +105 -0
- package/dist/lib/jsts/org/locationtech/jts/noding.js +9 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/BoundaryOp.js +104 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/GeometryGraphOperation.js +36 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/IsSimpleOp.js +165 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferBuilder.js +148 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferInputLineSimplifier.js +96 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferOp.js +126 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferParameters.js +87 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/BufferSubgraph.js +150 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetCurveBuilder.js +170 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetCurveSetBuilder.js +118 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetSegmentGenerator.js +269 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/OffsetSegmentString.js +62 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/RightmostEdgeFinder.js +91 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/SubgraphDepthLocater.js +100 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/VariableBuffer.js +226 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/BufferCurveMaximumDistanceFinder.js +92 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/BufferDistanceValidator.js +107 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/BufferResultValidator.js +116 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/DistanceToPointFinder.js +46 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer/validate/PointPairDistance.js +66 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/buffer.js +7 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance/ConnectedElementLocationFilter.js +28 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance/ConnectedElementPointFilter.js +26 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance/DistanceOp.js +231 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance/FacetSequence.js +150 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance/FacetSequenceTreeBuilder.js +50 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance/GeometryLocation.js +36 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance/IndexedFacetDistance.js +68 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance3d/AxisPlaneCoordinateSequence.js +82 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance3d/Distance3DOp.js +299 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/distance3d/PlanarPolygon3D.js +110 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/EdgeString.js +42 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMergeDirectedEdge.js +22 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMergeEdge.js +15 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMergeGraph.js +34 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineMerger.js +108 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/linemerge/LineSequencer.js +245 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/linemerge.js +7 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/ConsistentPolygonRingChecker.js +69 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/EdgeSetNoder.js +28 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/LineBuilder.js +89 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/MaximalEdgeRing.js +39 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/MinimalEdgeRing.js +17 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/OverlayNodeFactory.js +11 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/OverlayOp.js +312 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/PointBuilder.js +39 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/PolygonBuilder.js +144 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/GeometrySnapper.js +118 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/LineStringSnapper.js +87 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/SnapIfNeededOverlayOp.js +54 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap/SnapOverlayOp.js +70 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/snap.js +7 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/validate/FuzzyPointLocator.js +71 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/validate/OffsetPointGenerator.js +51 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay/validate/OverlayResultValidator.js +81 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/overlay.js +7 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/EdgeRing.js +235 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/HoleAssigner.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/PolygonizeDirectedEdge.js +35 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/PolygonizeEdge.js +15 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/PolygonizeGraph.js +247 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/polygonize/Polygonizer.js +170 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/polygonize.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/predicate/RectangleContains.js +62 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/predicate/RectangleIntersects.js +151 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/EdgeEndBuilder.js +56 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/EdgeEndBundle.js +93 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/EdgeEndBundleStar.js +22 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateComputer.js +168 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateNode.js +17 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateNodeFactory.js +11 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateNodeGraph.js +48 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate/RelateOp.js +101 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/relate.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union/CascadedPolygonUnion.js +124 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union/InputExtracter.js +93 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union/OverlapUnion.js +146 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union/PointGeometryUnion.js +42 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union/UnaryUnionOp.js +97 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union/UnionInteracting.js +70 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union/UnionOp.js +22 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/union.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/valid/ConnectedInteriorTester.js +118 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/valid/ConsistentAreaTester.js +50 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/valid/IndexedNestedRingTester.js +56 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/valid/IsValidOp.js +323 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/valid/RepeatedPointTester.js +48 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/valid/TopologyValidationError.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/operation/valid.js +7 -0
- package/dist/lib/jsts/org/locationtech/jts/operation.js +23 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/DirectedEdge.js +99 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/DirectedEdgeStar.js +75 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/Edge.js +46 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/GraphComponent.js +53 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/Node.js +55 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/NodeMap.js +25 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/PlanarGraph.js +96 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/Subgraph.js +39 -0
- package/dist/lib/jsts/org/locationtech/jts/planargraph/algorithm/ConnectedSubgraphFinder.js +48 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/CommonBits.js +86 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/CommonBitsOp.js +58 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/CommonBitsRemover.js +81 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/CoordinatePrecisionReducerFilter.js +24 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/EnhancedPrecisionOp.js +109 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/GeometryPrecisionReducer.js +80 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/MinimumClearance.js +125 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/PrecisionReducerCoordinateOperation.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/precision/SimpleMinimumClearance.js +114 -0
- package/dist/lib/jsts/org/locationtech/jts/precision.js +17 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/GeometricShapeBuilder.js +50 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/fractal/HilbertCode.js +109 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/fractal/HilbertCurveBuilder.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/fractal/KochSnowflakeBuilder.js +65 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/fractal/MortonCode.js +49 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/fractal/MortonCurveBuilder.js +43 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/fractal/SierpinskiCarpetBuilder.js +52 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/random/RandomPointsBuilder.js +60 -0
- package/dist/lib/jsts/org/locationtech/jts/shape/random/RandomPointsInGridBuilder.js +71 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/DouglasPeuckerLineSimplifier.js +60 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/DouglasPeuckerSimplifier.js +81 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/LineSegmentIndex.js +58 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLineSegment.js +26 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLineString.js +71 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLineStringSimplifier.js +124 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/TaggedLinesSimplifier.js +25 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/TopologyPreservingSimplifier.js +79 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/VWLineSimplifier.js +126 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify/VWSimplifier.js +81 -0
- package/dist/lib/jsts/org/locationtech/jts/simplify.js +9 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/ConformingDelaunayTriangulationBuilder.js +90 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/ConformingDelaunayTriangulator.js +215 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintEnforcementException.js +27 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintSplitPointFinder.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintVertex.js +32 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/ConstraintVertexFactory.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/DelaunayTriangulationBuilder.js +80 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/IncrementalDelaunayTriangulator.js +46 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/MidpointSplitPointFinder.js +12 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/NonEncroachingSplitPointFinder.js +27 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/Segment.js +73 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/SplitSegment.js +51 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/VertexTaggedGeometryDataMapper.js +44 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/VoronoiDiagramBuilder.js +78 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/EdgeConnectedTriangleTraversal.js +35 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/LastFoundQuadEdgeLocator.js +31 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/LocateFailureException.js +32 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdge.js +142 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeLocator.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeSubdivision.js +443 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeTriangle.js +184 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/QuadEdgeUtil.js +12 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/TraversalVisitor.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/TrianglePredicate.js +106 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/TriangleVisitor.js +3 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge/Vertex.js +199 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate/quadedge.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/triangulate.js +11 -0
- package/dist/lib/jsts/org/locationtech/jts/util/Assert.js +37 -0
- package/dist/lib/jsts/org/locationtech/jts/util/AssertionFailedException.js +15 -0
- package/dist/lib/jsts/org/locationtech/jts/util/CollectionUtil.js +27 -0
- package/dist/lib/jsts/org/locationtech/jts/util/CoordinateArrayFilter.js +21 -0
- package/dist/lib/jsts/org/locationtech/jts/util/CoordinateCountFilter.js +18 -0
- package/dist/lib/jsts/org/locationtech/jts/util/GeometricShapeFactory.js +258 -0
- package/dist/lib/jsts/org/locationtech/jts/util/IntArrayList.js +42 -0
- package/dist/lib/jsts/org/locationtech/jts/util/Memory.js +41 -0
- package/dist/lib/jsts/org/locationtech/jts/util/NumberUtil.js +5 -0
- package/dist/lib/jsts/org/locationtech/jts/util/ObjectCounter.js +36 -0
- package/dist/lib/jsts/org/locationtech/jts/util/PriorityQueue.js +56 -0
- package/dist/lib/jsts/org/locationtech/jts/util/StringUtil.js +63 -0
- package/dist/lib/jsts/org/locationtech/jts/util/TestBuilderProxy.js +33 -0
- package/dist/lib/jsts/org/locationtech/jts/util/UniqueCoordinateArrayFilter.js +31 -0
- package/dist/lib/jsts/org/locationtech/jts/util.js +21 -0
- package/dist/lib/jsts/package.json +66 -0
- package/dist/mirage2d.cjs.js +1 -1
- package/dist/mirage2d.umd.js +1 -1
- 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
|
+
```
|