├── .gitignore ├── LICENSE.md ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── ProtocolBuffers-Swift │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AbstractMessage.swift │ │ ├── CodedInputStream.swift │ │ ├── CodedOutputStream.swift │ │ ├── ConcreateExtensionField.swift │ │ ├── ExtendableMessage.swift │ │ ├── ExtensionRegistry.swift │ │ ├── Field.swift │ │ ├── GeneratedMessage.swift │ │ ├── Google.Protobuf.Any.proto.swift │ │ ├── Google.Protobuf.Api.proto.swift │ │ ├── Google.Protobuf.Descriptor.proto.swift │ │ ├── Google.Protobuf.Duration.proto.swift │ │ ├── Google.Protobuf.Empty.proto.swift │ │ ├── Google.Protobuf.FieldMask.proto.swift │ │ ├── Google.Protobuf.SourceContext.proto.swift │ │ ├── Google.Protobuf.Struct.proto.swift │ │ ├── Google.Protobuf.SwiftDescriptor.proto.swift │ │ ├── Google.Protobuf.Timestamp.proto.swift │ │ ├── Google.Protobuf.Type.proto.swift │ │ ├── Google.Protobuf.Wrappers.proto.swift │ │ ├── RingBuffer.swift │ │ ├── UnknownFieldSet.swift │ │ └── WireFormat.swift ├── Target Support Files │ ├── Pods-SwiftVectorTiles │ │ ├── Info.plist │ │ ├── Pods-SwiftVectorTiles-acknowledgements.markdown │ │ ├── Pods-SwiftVectorTiles-acknowledgements.plist │ │ ├── Pods-SwiftVectorTiles-dummy.m │ │ ├── Pods-SwiftVectorTiles-resources.sh │ │ ├── Pods-SwiftVectorTiles-umbrella.h │ │ ├── Pods-SwiftVectorTiles.debug.xcconfig │ │ ├── Pods-SwiftVectorTiles.modulemap │ │ └── Pods-SwiftVectorTiles.release.xcconfig │ ├── Pods-SwiftVectorTilesTests │ │ ├── Info.plist │ │ ├── Pods-SwiftVectorTilesTests-acknowledgements.markdown │ │ ├── Pods-SwiftVectorTilesTests-acknowledgements.plist │ │ ├── Pods-SwiftVectorTilesTests-dummy.m │ │ ├── Pods-SwiftVectorTilesTests-frameworks.sh │ │ ├── Pods-SwiftVectorTilesTests-resources.sh │ │ ├── Pods-SwiftVectorTilesTests-umbrella.h │ │ ├── Pods-SwiftVectorTilesTests.debug.xcconfig │ │ ├── Pods-SwiftVectorTilesTests.modulemap │ │ └── Pods-SwiftVectorTilesTests.release.xcconfig │ ├── ProtocolBuffers-Swift │ │ ├── Info.plist │ │ ├── ProtocolBuffers-Swift-dummy.m │ │ ├── ProtocolBuffers-Swift-prefix.pch │ │ ├── ProtocolBuffers-Swift-umbrella.h │ │ ├── ProtocolBuffers-Swift.modulemap │ │ └── ProtocolBuffers-Swift.xcconfig │ └── geos │ │ ├── Info.plist │ │ ├── geos-dummy.m │ │ ├── geos-prefix.pch │ │ ├── geos-umbrella.h │ │ ├── geos.modulemap │ │ └── geos.xcconfig └── geos │ ├── COPYING │ ├── README │ ├── README.md │ ├── capi │ ├── Makefile │ ├── Makefile.in │ ├── geos_c.cpp │ ├── geos_c.h │ ├── geos_c.h.in │ ├── geos_c.h.orig │ └── geos_ts_c.cpp │ ├── geos_svn_revision.h │ ├── include │ ├── Makefile │ ├── Makefile.in │ ├── acconfig.h │ ├── config.h │ ├── config.h.in │ ├── geos.h │ └── geos │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── algorithm │ │ ├── Angle.h │ │ ├── BoundaryNodeRule.h │ │ ├── CGAlgorithms.h │ │ ├── CentralEndpointIntersector.h │ │ ├── Centroid.h │ │ ├── CentroidArea.h │ │ ├── CentroidLine.h │ │ ├── CentroidPoint.h │ │ ├── ConvexHull.h │ │ ├── ConvexHull.inl │ │ ├── HCoordinate.h │ │ ├── InteriorPointArea.h │ │ ├── InteriorPointLine.h │ │ ├── InteriorPointPoint.h │ │ ├── LineIntersector.h │ │ ├── MCPointInRing.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── MinimumDiameter.h │ │ ├── NotRepresentableException.h │ │ ├── PointInRing.h │ │ ├── PointLocator.h │ │ ├── RayCrossingCounter.h │ │ ├── RobustDeterminant.h │ │ ├── SIRtreePointInRing.h │ │ ├── SimplePointInRing.h │ │ ├── distance │ │ │ ├── DiscreteHausdorffDistance.h │ │ │ ├── DistanceToPoint.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── PointPairDistance.h │ │ └── locate │ │ │ ├── IndexedPointInAreaLocator.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PointOnGeometryLocator.h │ │ │ └── SimplePointInAreaLocator.h │ │ ├── export.h │ │ ├── geom.h │ │ ├── geom │ │ ├── BinaryOp.h │ │ ├── Coordinate.h │ │ ├── Coordinate.inl │ │ ├── CoordinateArraySequence.h │ │ ├── CoordinateArraySequenceFactory.h │ │ ├── CoordinateArraySequenceFactory.inl │ │ ├── CoordinateFilter.h │ │ ├── CoordinateList.h │ │ ├── CoordinateSequence.h │ │ ├── CoordinateSequenceFactory.h │ │ ├── CoordinateSequenceFilter.h │ │ ├── Dimension.h │ │ ├── Envelope.h │ │ ├── Envelope.inl │ │ ├── Geometry.h │ │ ├── GeometryCollection.h │ │ ├── GeometryCollection.inl │ │ ├── GeometryComponentFilter.h │ │ ├── GeometryFactory.h │ │ ├── GeometryFactory.inl │ │ ├── GeometryFilter.h │ │ ├── GeometryList.h │ │ ├── IntersectionMatrix.h │ │ ├── LineSegment.h │ │ ├── LineSegment.inl │ │ ├── LineString.h │ │ ├── Lineal.h │ │ ├── LinearRing.h │ │ ├── Location.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── MultiLineString.h │ │ ├── MultiLineString.inl │ │ ├── MultiPoint.h │ │ ├── MultiPolygon.h │ │ ├── MultiPolygon.inl │ │ ├── Point.h │ │ ├── Polygon.h │ │ ├── Polygonal.h │ │ ├── PrecisionModel.h │ │ ├── PrecisionModel.inl │ │ ├── Puntal.h │ │ ├── Triangle.h │ │ ├── prep │ │ │ ├── AbstractPreparedPolygonContains.h │ │ │ ├── BasicPreparedGeometry.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PreparedGeometry.h │ │ │ ├── PreparedGeometryFactory.h │ │ │ ├── PreparedLineString.h │ │ │ ├── PreparedLineStringIntersects.h │ │ │ ├── PreparedPoint.h │ │ │ ├── PreparedPolygon.h │ │ │ ├── PreparedPolygonContains.h │ │ │ ├── PreparedPolygonContainsProperly.h │ │ │ ├── PreparedPolygonCovers.h │ │ │ ├── PreparedPolygonIntersects.h │ │ │ └── PreparedPolygonPredicate.h │ │ └── util │ │ │ ├── ComponentCoordinateExtracter.h │ │ │ ├── CoordinateOperation.h │ │ │ ├── GeometryCombiner.h │ │ │ ├── GeometryEditor.h │ │ │ ├── GeometryEditorOperation.h │ │ │ ├── GeometryExtracter.h │ │ │ ├── GeometryTransformer.h │ │ │ ├── LinearComponentExtracter.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PointExtracter.h │ │ │ ├── PolygonExtracter.h │ │ │ ├── ShortCircuitedGeometryVisitor.h │ │ │ └── SineStarFactory.h │ │ ├── geomPrep.h │ │ ├── geomUtil.h │ │ ├── geomgraph.h │ │ ├── geomgraph │ │ ├── Depth.h │ │ ├── DirectedEdge.h │ │ ├── DirectedEdge.inl │ │ ├── DirectedEdgeStar.h │ │ ├── Edge.h │ │ ├── EdgeEnd.h │ │ ├── EdgeEndStar.h │ │ ├── EdgeIntersection.h │ │ ├── EdgeIntersectionList.h │ │ ├── EdgeList.h │ │ ├── EdgeNodingValidator.h │ │ ├── EdgeRing.h │ │ ├── GeometryGraph.h │ │ ├── GeometryGraph.inl │ │ ├── GraphComponent.h │ │ ├── Label.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Node.h │ │ ├── NodeFactory.h │ │ ├── NodeMap.h │ │ ├── PlanarGraph.h │ │ ├── Position.h │ │ ├── Quadrant.h │ │ ├── TopologyLocation.h │ │ └── index │ │ │ ├── EdgeSetIntersector.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── MonotoneChain.h │ │ │ ├── MonotoneChainEdge.h │ │ │ ├── MonotoneChainIndexer.h │ │ │ ├── SegmentIntersector.h │ │ │ ├── SimpleEdgeSetIntersector.h │ │ │ ├── SimpleMCSweepLineIntersector.h │ │ │ ├── SimpleSweepLineIntersector.h │ │ │ ├── SweepLineEvent.h │ │ │ ├── SweepLineEventObj.h │ │ │ └── SweepLineSegment.h │ │ ├── geomgraphindex.h │ │ ├── geosAlgorithm.h │ │ ├── index │ │ ├── ItemVisitor.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── SpatialIndex.h │ │ ├── bintree │ │ │ ├── Bintree.h │ │ │ ├── Interval.h │ │ │ ├── Key.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Node.h │ │ │ ├── NodeBase.h │ │ │ └── Root.h │ │ ├── chain │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── MonotoneChain.h │ │ │ ├── MonotoneChainBuilder.h │ │ │ ├── MonotoneChainOverlapAction.h │ │ │ └── MonotoneChainSelectAction.h │ │ ├── intervalrtree │ │ │ ├── IntervalRTreeBranchNode.h │ │ │ ├── IntervalRTreeLeafNode.h │ │ │ ├── IntervalRTreeNode.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── SortedPackedIntervalRTree.h │ │ ├── quadtree │ │ │ ├── DoubleBits.h │ │ │ ├── IntervalSize.h │ │ │ ├── Key.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Node.h │ │ │ ├── NodeBase.h │ │ │ ├── Quadtree.h │ │ │ └── Root.h │ │ ├── strtree │ │ │ ├── AbstractNode.h │ │ │ ├── AbstractSTRtree.h │ │ │ ├── Boundable.h │ │ │ ├── Interval.h │ │ │ ├── ItemBoundable.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── SIRtree.h │ │ │ └── STRtree.h │ │ └── sweepline │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── SweepLineEvent.h │ │ │ ├── SweepLineIndex.h │ │ │ ├── SweepLineInterval.h │ │ │ └── SweepLineOverlapAction.h │ │ ├── indexBintree.h │ │ ├── indexChain.h │ │ ├── indexIntervalRTree.h │ │ ├── indexQuadtree.h │ │ ├── indexStrtree.h │ │ ├── indexSweepline.h │ │ ├── inline.h │ │ ├── io.h │ │ ├── io │ │ ├── ByteOrderDataInStream.h │ │ ├── ByteOrderDataInStream.inl │ │ ├── ByteOrderValues.h │ │ ├── CLocalizer.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── ParseException.h │ │ ├── StringTokenizer.h │ │ ├── WKBConstants.h │ │ ├── WKBReader.h │ │ ├── WKBWriter.h │ │ ├── WKTReader.h │ │ ├── WKTReader.inl │ │ ├── WKTWriter.h │ │ └── Writer.h │ │ ├── linearref │ │ ├── ExtractLineByLocation.h │ │ ├── LengthIndexOfPoint.h │ │ ├── LengthIndexedLine.h │ │ ├── LengthLocationMap.h │ │ ├── LinearGeometryBuilder.h │ │ ├── LinearIterator.h │ │ ├── LinearLocation.h │ │ ├── LocationIndexOfLine.h │ │ ├── LocationIndexOfPoint.h │ │ ├── LocationIndexedLine.h │ │ ├── Makefile │ │ └── Makefile.in │ │ ├── noding.h │ │ ├── noding │ │ ├── BasicSegmentString.h │ │ ├── FastNodingValidator.h │ │ ├── FastSegmentSetIntersectionFinder.h │ │ ├── GeometryNoder.h │ │ ├── IntersectionAdder.h │ │ ├── IntersectionFinderAdder.h │ │ ├── IteratedNoder.h │ │ ├── MCIndexNoder.h │ │ ├── MCIndexNoder.inl │ │ ├── MCIndexSegmentSetMutualIntersector.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── NodableSegmentString.h │ │ ├── NodedSegmentString.h │ │ ├── Noder.h │ │ ├── NodingValidator.h │ │ ├── Octant.h │ │ ├── OrientedCoordinateArray.h │ │ ├── ScaledNoder.h │ │ ├── SegmentIntersectionDetector.h │ │ ├── SegmentIntersector.h │ │ ├── SegmentNode.h │ │ ├── SegmentNodeList.h │ │ ├── SegmentPointComparator.h │ │ ├── SegmentSetMutualIntersector.h │ │ ├── SegmentString.h │ │ ├── SegmentStringUtil.h │ │ ├── SimpleNoder.h │ │ ├── SingleInteriorIntersectionFinder.h │ │ ├── SinglePassNoder.h │ │ └── snapround │ │ │ ├── HotPixel.h │ │ │ ├── HotPixel.inl │ │ │ ├── MCIndexPointSnapper.h │ │ │ ├── MCIndexSnapRounder.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── SimpleSnapRounder.h │ │ ├── nodingSnapround.h │ │ ├── opBuffer.h │ │ ├── opDistance.h │ │ ├── opLinemerge.h │ │ ├── opOverlay.h │ │ ├── opPolygonize.h │ │ ├── opPredicate.h │ │ ├── opRelate.h │ │ ├── opValid.h │ │ ├── operation.h │ │ ├── operation │ │ ├── GeometryGraphOperation.h │ │ ├── IsSimpleOp.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── buffer │ │ │ ├── BufferBuilder.h │ │ │ ├── BufferInputLineSimplifier.h │ │ │ ├── BufferOp.h │ │ │ ├── BufferParameters.h │ │ │ ├── BufferSubgraph.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── OffsetCurveBuilder.h │ │ │ ├── OffsetCurveSetBuilder.h │ │ │ ├── OffsetSegmentGenerator.h │ │ │ ├── OffsetSegmentString.h │ │ │ ├── RightmostEdgeFinder.h │ │ │ └── SubgraphDepthLocater.h │ │ ├── distance │ │ │ ├── ConnectedElementLocationFilter.h │ │ │ ├── ConnectedElementPointFilter.h │ │ │ ├── DistanceOp.h │ │ │ ├── GeometryLocation.h │ │ │ ├── Makefile │ │ │ └── Makefile.in │ │ ├── intersection │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── Rectangle.h │ │ │ ├── RectangleIntersection.h │ │ │ └── RectangleIntersectionBuilder.h │ │ ├── linemerge │ │ │ ├── EdgeString.h │ │ │ ├── LineMergeDirectedEdge.h │ │ │ ├── LineMergeEdge.h │ │ │ ├── LineMergeGraph.h │ │ │ ├── LineMerger.h │ │ │ ├── LineSequencer.h │ │ │ ├── Makefile │ │ │ └── Makefile.in │ │ ├── overlay │ │ │ ├── EdgeSetNoder.h │ │ │ ├── ElevationMatrix.h │ │ │ ├── ElevationMatrixCell.h │ │ │ ├── LineBuilder.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── MaximalEdgeRing.h │ │ │ ├── MinimalEdgeRing.h │ │ │ ├── MinimalEdgeRing.inl │ │ │ ├── OverlayNodeFactory.h │ │ │ ├── OverlayOp.h │ │ │ ├── PointBuilder.h │ │ │ ├── PolygonBuilder.h │ │ │ ├── snap │ │ │ │ ├── GeometrySnapper.h │ │ │ │ ├── LineStringSnapper.h │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── SnapIfNeededOverlayOp.h │ │ │ │ └── SnapOverlayOp.h │ │ │ └── validate │ │ │ │ ├── FuzzyPointLocator.h │ │ │ │ ├── OffsetPointGenerator.h │ │ │ │ └── OverlayResultValidator.h │ │ ├── polygonize │ │ │ ├── EdgeRing.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PolygonizeDirectedEdge.h │ │ │ ├── PolygonizeEdge.h │ │ │ ├── PolygonizeGraph.h │ │ │ └── Polygonizer.h │ │ ├── predicate │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── RectangleContains.h │ │ │ ├── RectangleIntersects.h │ │ │ └── SegmentIntersectionTester.h │ │ ├── relate │ │ │ ├── EdgeEndBuilder.h │ │ │ ├── EdgeEndBundle.h │ │ │ ├── EdgeEndBundleStar.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── RelateComputer.h │ │ │ ├── RelateNode.h │ │ │ ├── RelateNodeFactory.h │ │ │ ├── RelateNodeGraph.h │ │ │ └── RelateOp.h │ │ ├── sharedpaths │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ └── SharedPathsOp.h │ │ ├── union │ │ │ ├── CascadedPolygonUnion.h │ │ │ ├── CascadedUnion.h │ │ │ ├── GeometryListHolder.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── PointGeometryUnion.h │ │ │ └── UnaryUnionOp.h │ │ └── valid │ │ │ ├── ConnectedInteriorTester.h │ │ │ ├── ConsistentAreaTester.h │ │ │ ├── IsValidOp.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── QuadtreeNestedRingTester.h │ │ │ ├── RepeatedPointTester.h │ │ │ ├── SimpleNestedRingTester.h │ │ │ ├── SweeplineNestedRingTester.h │ │ │ └── TopologyValidationError.h │ │ ├── planargraph.h │ │ ├── planargraph │ │ ├── DirectedEdge.h │ │ ├── DirectedEdgeStar.h │ │ ├── Edge.h │ │ ├── GraphComponent.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Node.h │ │ ├── NodeMap.h │ │ ├── PlanarGraph.h │ │ ├── Subgraph.h │ │ └── algorithm │ │ │ ├── ConnectedSubgraphFinder.h │ │ │ ├── Makefile │ │ │ └── Makefile.in │ │ ├── platform.h │ │ ├── platform.h.cmake │ │ ├── platform.h.in │ │ ├── platform.h.vc │ │ ├── precision.h │ │ ├── precision │ │ ├── CommonBits.h │ │ ├── CommonBitsOp.h │ │ ├── CommonBitsRemover.h │ │ ├── EnhancedPrecisionOp.h │ │ ├── GeometryPrecisionReducer.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── PrecisionReducerCoordinateOperation.h │ │ └── SimpleGeometryPrecisionReducer.h │ │ ├── profiler.h │ │ ├── simplify │ │ ├── DouglasPeuckerLineSimplifier.h │ │ ├── DouglasPeuckerSimplifier.h │ │ ├── LineSegmentIndex.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── TaggedLineSegment.h │ │ ├── TaggedLineString.h │ │ ├── TaggedLineStringSimplifier.h │ │ ├── TaggedLinesSimplifier.h │ │ └── TopologyPreservingSimplifier.h │ │ ├── spatialIndex.h │ │ ├── timeval.h │ │ ├── triangulate │ │ ├── DelaunayTriangulationBuilder.h │ │ ├── IncrementalDelaunayTriangulator.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── VoronoiDiagramBuilder.h │ │ └── quadedge │ │ │ ├── LastFoundQuadEdgeLocator.h │ │ │ ├── LocateFailureException.h │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── QuadEdge.h │ │ │ ├── QuadEdgeLocator.h │ │ │ ├── QuadEdgeSubdivision.h │ │ │ ├── TrianglePredicate.h │ │ │ ├── TriangleVisitor.h │ │ │ └── Vertex.h │ │ ├── unload.h │ │ ├── util.h │ │ ├── util │ │ ├── Assert.h │ │ ├── AssertionFailedException.h │ │ ├── CoordinateArrayFilter.h │ │ ├── GEOSException.h │ │ ├── GeometricShapeFactory.h │ │ ├── IllegalArgumentException.h │ │ ├── IllegalStateException.h │ │ ├── Interrupt.h │ │ ├── Machine.h │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── TopologyException.h │ │ ├── UniqueCoordinateArrayFilter.h │ │ ├── UnsupportedOperationException.h │ │ └── math.h │ │ ├── version.h │ │ ├── version.h.in │ │ └── version.h.vc │ └── src │ ├── algorithm │ ├── Angle.cpp │ ├── BoundaryNodeRule.cpp │ ├── CGAlgorithms.cpp │ ├── Centroid.cpp │ ├── CentroidArea.cpp │ ├── CentroidLine.cpp │ ├── CentroidPoint.cpp │ ├── ConvexHull.cpp │ ├── HCoordinate.cpp │ ├── InteriorPointArea.cpp │ ├── InteriorPointLine.cpp │ ├── InteriorPointPoint.cpp │ ├── LineIntersector.cpp │ ├── MCPointInRing.cpp │ ├── MinimumDiameter.cpp │ ├── NotRepresentableException.cpp │ ├── PointLocator.cpp │ ├── RayCrossingCounter.cpp │ ├── RobustDeterminant.cpp │ ├── SIRtreePointInRing.cpp │ ├── SimplePointInRing.cpp │ ├── distance │ │ ├── DiscreteHausdorffDistance.cpp │ │ └── DistanceToPoint.cpp │ └── locate │ │ ├── IndexedPointInAreaLocator.cpp │ │ ├── PointOnGeometryLocator.cpp │ │ └── SimplePointInAreaLocator.cpp │ ├── geom │ ├── Coordinate.cpp │ ├── CoordinateArraySequence.cpp │ ├── CoordinateArraySequenceFactory.cpp │ ├── CoordinateSequence.cpp │ ├── CoordinateSequenceFactory.cpp │ ├── Dimension.cpp │ ├── Envelope.cpp │ ├── Geometry.cpp │ ├── GeometryCollection.cpp │ ├── GeometryComponentFilter.cpp │ ├── GeometryFactory.cpp │ ├── GeometryList.cpp │ ├── IntersectionMatrix.cpp │ ├── LineSegment.cpp │ ├── LineString.cpp │ ├── LinearRing.cpp │ ├── Location.cpp │ ├── MultiLineString.cpp │ ├── MultiPoint.cpp │ ├── MultiPolygon.cpp │ ├── Point.cpp │ ├── Polygon.cpp │ ├── PrecisionModel.cpp │ ├── Triangle.cpp │ ├── prep │ │ ├── AbstractPreparedPolygonContains.cpp │ │ ├── BasicPreparedGeometry.cpp │ │ ├── PreparedGeometry.cpp │ │ ├── PreparedGeometryFactory.cpp │ │ ├── PreparedLineString.cpp │ │ ├── PreparedLineStringIntersects.cpp │ │ ├── PreparedPoint.cpp │ │ ├── PreparedPolygon.cpp │ │ ├── PreparedPolygonContains.cpp │ │ ├── PreparedPolygonContainsProperly.cpp │ │ ├── PreparedPolygonCovers.cpp │ │ ├── PreparedPolygonIntersects.cpp │ │ └── PreparedPolygonPredicate.cpp │ └── util │ │ ├── ComponentCoordinateExtracter.cpp │ │ ├── CoordinateOperation.cpp │ │ ├── GeometryCombiner.cpp │ │ ├── GeometryEditor.cpp │ │ ├── GeometryTransformer.cpp │ │ ├── LinearComponentExtracter.cpp │ │ ├── PointExtracter.cpp │ │ ├── PolygonExtracter.cpp │ │ ├── ShortCircuitedGeometryVisitor.cpp │ │ └── SineStarFactory.cpp │ ├── geomgraph │ ├── Depth.cpp │ ├── DirectedEdge.cpp │ ├── DirectedEdgeStar.cpp │ ├── Edge.cpp │ ├── EdgeEnd.cpp │ ├── EdgeEndStar.cpp │ ├── EdgeIntersectionList.cpp │ ├── EdgeList.cpp │ ├── EdgeNodingValidator.cpp │ ├── EdgeRing.cpp │ ├── GeometryGraph.cpp │ ├── GraphComponent.cpp │ ├── Label.cpp │ ├── Node.cpp │ ├── NodeFactory.cpp │ ├── NodeMap.cpp │ ├── PlanarGraph.cpp │ ├── Position.cpp │ ├── Quadrant.cpp │ ├── TopologyLocation.cpp │ └── index │ │ ├── MonotoneChainEdge.cpp │ │ ├── MonotoneChainIndexer.cpp │ │ ├── SegmentIntersector.cpp │ │ ├── SimpleEdgeSetIntersector.cpp │ │ ├── SimpleMCSweepLineIntersector.cpp │ │ ├── SimpleSweepLineIntersector.cpp │ │ ├── SweepLineEvent.cpp │ │ └── SweepLineSegment.cpp │ ├── index │ ├── bintree │ │ ├── Bintree.cpp │ │ ├── Interval.cpp │ │ ├── Key.cpp │ │ ├── Node.cpp │ │ ├── NodeBase.cpp │ │ └── Root.cpp │ ├── chain │ │ ├── MonotoneChain.cpp │ │ ├── MonotoneChainBuilder.cpp │ │ ├── MonotoneChainOverlapAction.cpp │ │ └── MonotoneChainSelectAction.cpp │ ├── intervalrtree │ │ ├── IntervalRTreeBranchNode.cpp │ │ ├── IntervalRTreeLeafNode.cpp │ │ ├── IntervalRTreeNode.cpp │ │ └── SortedPackedIntervalRTree.cpp │ ├── quadtree │ │ ├── DoubleBits.cpp │ │ ├── IntervalSize.cpp │ │ ├── Key.cpp │ │ ├── Node.cpp │ │ ├── NodeBase.cpp │ │ ├── Quadtree.cpp │ │ └── Root.cpp │ ├── strtree │ │ ├── AbstractNode.cpp │ │ ├── AbstractSTRtree.cpp │ │ ├── Interval.cpp │ │ ├── ItemBoundable.cpp │ │ ├── SIRtree.cpp │ │ └── STRtree.cpp │ └── sweepline │ │ ├── SweepLineEvent.cpp │ │ ├── SweepLineIndex.cpp │ │ └── SweepLineInterval.cpp │ ├── inlines.cpp │ ├── io │ ├── ByteOrderDataInStream.cpp │ ├── ByteOrderValues.cpp │ ├── CLocalizer.cpp │ ├── ParseException.cpp │ ├── StringTokenizer.cpp │ ├── Unload.cpp │ ├── WKBReader.cpp │ ├── WKBWriter.cpp │ ├── WKTReader.cpp │ ├── WKTWriter.cpp │ └── Writer.cpp │ ├── linearref │ ├── ExtractLineByLocation.cpp │ ├── LengthIndexOfPoint.cpp │ ├── LengthIndexedLine.cpp │ ├── LengthLocationMap.cpp │ ├── LinearGeometryBuilder.cpp │ ├── LinearIterator.cpp │ ├── LinearLocation.cpp │ ├── LocationIndexOfLine.cpp │ └── LocationIndexOfPoint.cpp │ ├── noding │ ├── BasicSegmentString.cpp │ ├── FastNodingValidator.cpp │ ├── FastSegmentSetIntersectionFinder.cpp │ ├── GeometryNoder.cpp │ ├── IntersectionAdder.cpp │ ├── IntersectionFinderAdder.cpp │ ├── IteratedNoder.cpp │ ├── MCIndexNoder.cpp │ ├── MCIndexSegmentSetMutualIntersector.cpp │ ├── NodedSegmentString.cpp │ ├── NodingValidator.cpp │ ├── Octant.cpp │ ├── OrientedCoordinateArray.cpp │ ├── ScaledNoder.cpp │ ├── SegmentIntersectionDetector.cpp │ ├── SegmentNode.cpp │ ├── SegmentNodeList.cpp │ ├── SegmentString.cpp │ ├── SegmentStringUtil.cpp │ ├── SimpleNoder.cpp │ ├── SingleInteriorIntersectionFinder.cpp │ └── snapround │ │ ├── HotPixel.cpp │ │ ├── MCIndexPointSnapper.cpp │ │ ├── MCIndexSnapRounder.cpp │ │ └── SimpleSnapRounder.cpp │ ├── operation │ ├── GeometryGraphOperation.cpp │ ├── IsSimpleOp.cpp │ ├── buffer │ │ ├── BufferBuilder.cpp │ │ ├── BufferInputLineSimplifier.cpp │ │ ├── BufferOp.cpp │ │ ├── BufferParameters.cpp │ │ ├── BufferSubgraph.cpp │ │ ├── OffsetCurveBuilder.cpp │ │ ├── OffsetCurveSetBuilder.cpp │ │ ├── OffsetSegmentGenerator.cpp │ │ ├── RightmostEdgeFinder.cpp │ │ └── SubgraphDepthLocater.cpp │ ├── distance │ │ ├── ConnectedElementLocationFilter.cpp │ │ ├── ConnectedElementPointFilter.cpp │ │ ├── DistanceOp.cpp │ │ └── GeometryLocation.cpp │ ├── intersection │ │ ├── Rectangle.cpp │ │ ├── RectangleIntersection.cpp │ │ └── RectangleIntersectionBuilder.cpp │ ├── linemerge │ │ ├── EdgeString.cpp │ │ ├── LineMergeDirectedEdge.cpp │ │ ├── LineMergeEdge.cpp │ │ ├── LineMergeGraph.cpp │ │ ├── LineMerger.cpp │ │ └── LineSequencer.cpp │ ├── overlay │ │ ├── EdgeSetNoder.cpp │ │ ├── ElevationMatrix.cpp │ │ ├── ElevationMatrixCell.cpp │ │ ├── LineBuilder.cpp │ │ ├── MaximalEdgeRing.cpp │ │ ├── MinimalEdgeRing.cpp │ │ ├── OverlayNodeFactory.cpp │ │ ├── OverlayOp.cpp │ │ ├── PointBuilder.cpp │ │ ├── PolygonBuilder.cpp │ │ ├── snap │ │ │ ├── GeometrySnapper.cpp │ │ │ ├── LineStringSnapper.cpp │ │ │ ├── SnapIfNeededOverlayOp.cpp │ │ │ └── SnapOverlayOp.cpp │ │ └── validate │ │ │ ├── FuzzyPointLocator.cpp │ │ │ ├── OffsetPointGenerator.cpp │ │ │ └── OverlayResultValidator.cpp │ ├── polygonize │ │ ├── EdgeRing.cpp │ │ ├── PolygonizeDirectedEdge.cpp │ │ ├── PolygonizeEdge.cpp │ │ ├── PolygonizeGraph.cpp │ │ └── Polygonizer.cpp │ ├── predicate │ │ ├── RectangleContains.cpp │ │ ├── RectangleIntersects.cpp │ │ └── SegmentIntersectionTester.cpp │ ├── relate │ │ ├── EdgeEndBuilder.cpp │ │ ├── EdgeEndBundle.cpp │ │ ├── EdgeEndBundleStar.cpp │ │ ├── RelateComputer.cpp │ │ ├── RelateNode.cpp │ │ ├── RelateNodeFactory.cpp │ │ ├── RelateNodeGraph.cpp │ │ └── RelateOp.cpp │ ├── sharedpaths │ │ └── SharedPathsOp.cpp │ ├── union │ │ ├── CascadedPolygonUnion.cpp │ │ ├── CascadedUnion.cpp │ │ ├── PointGeometryUnion.cpp │ │ └── UnaryUnionOp.cpp │ └── valid │ │ ├── ConnectedInteriorTester.cpp │ │ ├── ConsistentAreaTester.cpp │ │ ├── IndexedNestedRingTester.cpp │ │ ├── IndexedNestedRingTester.h │ │ ├── IsValidOp.cpp │ │ ├── QuadtreeNestedRingTester.cpp │ │ ├── RepeatedPointTester.cpp │ │ ├── SimpleNestedRingTester.cpp │ │ ├── SweeplineNestedRingTester.cpp │ │ └── TopologyValidationError.cpp │ ├── planargraph │ ├── DirectedEdge.cpp │ ├── DirectedEdgeStar.cpp │ ├── Edge.cpp │ ├── Node.cpp │ ├── NodeMap.cpp │ ├── PlanarGraph.cpp │ ├── Subgraph.cpp │ └── algorithm │ │ └── ConnectedSubgraphFinder.cpp │ ├── precision │ ├── CommonBits.cpp │ ├── CommonBitsOp.cpp │ ├── CommonBitsRemover.cpp │ ├── EnhancedPrecisionOp.cpp │ ├── GeometryPrecisionReducer.cpp │ ├── PrecisionReducerCoordinateOperation.cpp │ └── SimpleGeometryPrecisionReducer.cpp │ ├── simplify │ ├── DouglasPeuckerLineSimplifier.cpp │ ├── DouglasPeuckerSimplifier.cpp │ ├── LineSegmentIndex.cpp │ ├── TaggedLineSegment.cpp │ ├── TaggedLineString.cpp │ ├── TaggedLineStringSimplifier.cpp │ ├── TaggedLinesSimplifier.cpp │ └── TopologyPreservingSimplifier.cpp │ ├── triangulate │ ├── DelaunayTriangulationBuilder.cpp │ ├── IncrementalDelaunayTriangulator.cpp │ ├── VoronoiDiagramBuilder.cpp │ └── quadedge │ │ ├── LastFoundQuadEdgeLocator.cpp │ │ ├── LocateFailureException.cpp │ │ ├── QuadEdge.cpp │ │ ├── QuadEdgeLocator.cpp │ │ ├── QuadEdgeSubdivision.cpp │ │ ├── TrianglePredicate.cpp │ │ ├── TriangleVisitor.cpp │ │ └── Vertex.cpp │ └── util │ ├── Assert.cpp │ ├── GeometricShapeFactory.cpp │ ├── Interrupt.cpp │ ├── Profiler.cpp │ └── math.cpp ├── README.md ├── SwiftVectorTiles.podspec ├── SwiftVectorTiles.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Tests.xcscheme ├── SwiftVectorTiles.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── SwiftVectorTiles.xcscmblueprint ├── SwiftVectorTiles ├── Attribute.swift ├── Command.swift ├── Info.plist ├── MadCoordinateSequence.swift ├── MadGeometry.swift ├── MadGeometryCollection.swift ├── MadGeometryFactory.swift ├── MadGeometryType.swift ├── MadLineString.swift ├── MadLinearRing.swift ├── MadMultiGeometry.swift ├── MadMultiLineString.swift ├── MadMultiPoint.swift ├── MadMultiPolygon.swift ├── MadPoint.swift ├── MadPolygon.swift ├── SwiftVectorTiles.h ├── VectorTile.swift ├── VectorTileEncoder.swift └── geos │ └── Geos.swift ├── SwiftVectorTilesTests ├── Info.plist ├── MadGeometryTransformTests.swift ├── MadGeometryTypeTests.swift └── SwiftVectorTilesTests.swift ├── proto ├── README.md └── vector_tile.proto └── screenshots ├── shot1.png └── shot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/LICENSE -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/README.md -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/AbstractMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/AbstractMessage.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/CodedInputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/CodedInputStream.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/CodedOutputStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/CodedOutputStream.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/ConcreateExtensionField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/ConcreateExtensionField.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/ExtendableMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/ExtendableMessage.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/ExtensionRegistry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/ExtensionRegistry.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/Field.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/Field.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/GeneratedMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/GeneratedMessage.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/RingBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/RingBuffer.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/UnknownFieldSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/UnknownFieldSet.swift -------------------------------------------------------------------------------- /Pods/ProtocolBuffers-Swift/Source/WireFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/ProtocolBuffers-Swift/Source/WireFormat.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftVectorTiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/Pods-SwiftVectorTiles/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SwiftVectorTilesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/Pods-SwiftVectorTilesTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ProtocolBuffers-Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/ProtocolBuffers-Swift/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/geos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/geos/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/geos/geos-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/geos/geos-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/geos/geos-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/geos/geos-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/geos/geos-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/geos/geos-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/geos/geos.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/geos/geos.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/geos/geos.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/Target Support Files/geos/geos.xcconfig -------------------------------------------------------------------------------- /Pods/geos/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/COPYING -------------------------------------------------------------------------------- /Pods/geos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/README -------------------------------------------------------------------------------- /Pods/geos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/README.md -------------------------------------------------------------------------------- /Pods/geos/capi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/capi/Makefile -------------------------------------------------------------------------------- /Pods/geos/capi/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/capi/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/capi/geos_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/capi/geos_c.cpp -------------------------------------------------------------------------------- /Pods/geos/capi/geos_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/capi/geos_c.h -------------------------------------------------------------------------------- /Pods/geos/capi/geos_c.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/capi/geos_c.h.in -------------------------------------------------------------------------------- /Pods/geos/capi/geos_c.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/capi/geos_c.h.orig -------------------------------------------------------------------------------- /Pods/geos/capi/geos_ts_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/capi/geos_ts_c.cpp -------------------------------------------------------------------------------- /Pods/geos/geos_svn_revision.h: -------------------------------------------------------------------------------- 1 | #define GEOS_SVN_REVISION 0 2 | -------------------------------------------------------------------------------- /Pods/geos/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/acconfig.h -------------------------------------------------------------------------------- /Pods/geos/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/config.h -------------------------------------------------------------------------------- /Pods/geos/include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/config.h.in -------------------------------------------------------------------------------- /Pods/geos/include/geos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/Angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/Angle.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/BoundaryNodeRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/BoundaryNodeRule.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/CGAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/CGAlgorithms.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/CentralEndpointIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/CentralEndpointIntersector.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/Centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/Centroid.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/CentroidArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/CentroidArea.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/CentroidLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/CentroidLine.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/CentroidPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/CentroidPoint.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/ConvexHull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/ConvexHull.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/ConvexHull.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/ConvexHull.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/HCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/HCoordinate.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/InteriorPointArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/InteriorPointArea.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/InteriorPointLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/InteriorPointLine.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/InteriorPointPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/InteriorPointPoint.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/LineIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/LineIntersector.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/MCPointInRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/MCPointInRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/MinimumDiameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/MinimumDiameter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/NotRepresentableException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/NotRepresentableException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/PointInRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/PointInRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/PointLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/PointLocator.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/RayCrossingCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/RayCrossingCounter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/RobustDeterminant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/RobustDeterminant.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/SIRtreePointInRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/SIRtreePointInRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/SimplePointInRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/SimplePointInRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/distance/DistanceToPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/distance/DistanceToPoint.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/distance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/distance/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/distance/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/distance/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/distance/PointPairDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/distance/PointPairDistance.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/locate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/locate/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/algorithm/locate/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/algorithm/locate/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/export.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/BinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/BinaryOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Coordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Coordinate.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Coordinate.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Coordinate.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateArraySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateArraySequence.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateArraySequenceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateArraySequenceFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateArraySequenceFactory.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateArraySequenceFactory.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateFilter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateList.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateSequence.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateSequenceFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateSequenceFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/CoordinateSequenceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/CoordinateSequenceFilter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Dimension.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Envelope.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Envelope.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Envelope.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Geometry.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/GeometryCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/GeometryCollection.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/GeometryCollection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/GeometryCollection.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/GeometryComponentFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/GeometryComponentFilter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/GeometryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/GeometryFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/GeometryFactory.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/GeometryFactory.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/GeometryFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/GeometryFilter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/GeometryList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/GeometryList.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/IntersectionMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/IntersectionMatrix.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/LineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/LineSegment.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/LineSegment.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/LineSegment.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/LineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/LineString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Lineal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Lineal.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/LinearRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/LinearRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Location.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/MultiLineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/MultiLineString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/MultiLineString.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/MultiLineString.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/MultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/MultiPoint.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/MultiPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/MultiPolygon.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/MultiPolygon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/MultiPolygon.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Point.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Polygon.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Polygonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Polygonal.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/PrecisionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/PrecisionModel.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/PrecisionModel.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/PrecisionModel.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Puntal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Puntal.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/Triangle.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/BasicPreparedGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/BasicPreparedGeometry.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedGeometry.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedGeometryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedGeometryFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedLineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedLineString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedLineStringIntersects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedLineStringIntersects.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedPoint.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedPolygon.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedPolygonContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedPolygonContains.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedPolygonCovers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedPolygonCovers.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedPolygonIntersects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedPolygonIntersects.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/prep/PreparedPolygonPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/prep/PreparedPolygonPredicate.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/ComponentCoordinateExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/ComponentCoordinateExtracter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/CoordinateOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/CoordinateOperation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/GeometryCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/GeometryCombiner.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/GeometryEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/GeometryEditor.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/GeometryEditorOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/GeometryEditorOperation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/GeometryExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/GeometryExtracter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/GeometryTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/GeometryTransformer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/LinearComponentExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/LinearComponentExtracter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/PointExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/PointExtracter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/PolygonExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/PolygonExtracter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geom/util/SineStarFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geom/util/SineStarFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomPrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomPrep.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomUtil.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Depth.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/DirectedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/DirectedEdge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/DirectedEdge.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/DirectedEdge.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/DirectedEdgeStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/DirectedEdgeStar.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Edge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/EdgeEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/EdgeEnd.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/EdgeEndStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/EdgeEndStar.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/EdgeIntersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/EdgeIntersection.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/EdgeIntersectionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/EdgeIntersectionList.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/EdgeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/EdgeList.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/EdgeNodingValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/EdgeNodingValidator.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/EdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/EdgeRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/GeometryGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/GeometryGraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/GeometryGraph.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/GeometryGraph.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/GraphComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/GraphComponent.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Label.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Node.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/NodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/NodeFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/NodeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/NodeMap.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/PlanarGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/PlanarGraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Position.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/Quadrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/Quadrant.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/TopologyLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/TopologyLocation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/EdgeSetIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/EdgeSetIntersector.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/MonotoneChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/MonotoneChain.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/MonotoneChainEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/MonotoneChainEdge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/MonotoneChainIndexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/MonotoneChainIndexer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/SegmentIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/SegmentIntersector.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/SweepLineEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/SweepLineEvent.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/SweepLineEventObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/SweepLineEventObj.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraph/index/SweepLineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraph/index/SweepLineSegment.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geomgraphindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geomgraphindex.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/geosAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/geosAlgorithm.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/ItemVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/ItemVisitor.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/SpatialIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/SpatialIndex.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/Bintree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/Bintree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/Interval.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/Key.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/Node.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/NodeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/NodeBase.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/bintree/Root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/bintree/Root.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/chain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/chain/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/chain/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/chain/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/chain/MonotoneChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/chain/MonotoneChain.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/chain/MonotoneChainBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/chain/MonotoneChainBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/chain/MonotoneChainOverlapAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/chain/MonotoneChainOverlapAction.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/chain/MonotoneChainSelectAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/chain/MonotoneChainSelectAction.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/intervalrtree/IntervalRTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/intervalrtree/IntervalRTreeNode.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/intervalrtree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/intervalrtree/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/intervalrtree/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/intervalrtree/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/DoubleBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/DoubleBits.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/IntervalSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/IntervalSize.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/Key.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/Node.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/NodeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/NodeBase.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/Quadtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/Quadtree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/quadtree/Root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/quadtree/Root.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/AbstractNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/AbstractNode.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/AbstractSTRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/AbstractSTRtree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/Boundable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/Boundable.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/Interval.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/ItemBoundable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/ItemBoundable.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/SIRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/SIRtree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/strtree/STRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/strtree/STRtree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/sweepline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/sweepline/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/sweepline/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/sweepline/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/sweepline/SweepLineEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/sweepline/SweepLineEvent.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/sweepline/SweepLineIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/sweepline/SweepLineIndex.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/sweepline/SweepLineInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/sweepline/SweepLineInterval.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/index/sweepline/SweepLineOverlapAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/index/sweepline/SweepLineOverlapAction.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/indexBintree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/indexBintree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/indexChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/indexChain.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/indexIntervalRTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/indexIntervalRTree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/indexQuadtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/indexQuadtree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/indexStrtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/indexStrtree.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/indexSweepline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/indexSweepline.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/inline.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/ByteOrderDataInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/ByteOrderDataInStream.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/ByteOrderDataInStream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/ByteOrderDataInStream.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/ByteOrderValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/ByteOrderValues.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/CLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/CLocalizer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/ParseException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/ParseException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/StringTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/StringTokenizer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/WKBConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/WKBConstants.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/WKBReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/WKBReader.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/WKBWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/WKBWriter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/WKTReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/WKTReader.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/WKTReader.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/WKTReader.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/WKTWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/WKTWriter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/io/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/io/Writer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/ExtractLineByLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/ExtractLineByLocation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LengthIndexOfPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LengthIndexOfPoint.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LengthIndexedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LengthIndexedLine.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LengthLocationMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LengthLocationMap.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LinearGeometryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LinearGeometryBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LinearIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LinearIterator.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LinearLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LinearLocation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LocationIndexOfLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LocationIndexOfLine.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LocationIndexOfPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LocationIndexOfPoint.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/LocationIndexedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/LocationIndexedLine.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/linearref/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/linearref/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/BasicSegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/BasicSegmentString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/FastNodingValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/FastNodingValidator.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/GeometryNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/GeometryNoder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/IntersectionAdder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/IntersectionAdder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/IntersectionFinderAdder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/IntersectionFinderAdder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/IteratedNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/IteratedNoder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/MCIndexNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/MCIndexNoder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/MCIndexNoder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/MCIndexNoder.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/NodableSegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/NodableSegmentString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/NodedSegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/NodedSegmentString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/Noder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/Noder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/NodingValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/NodingValidator.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/Octant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/Octant.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/OrientedCoordinateArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/OrientedCoordinateArray.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/ScaledNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/ScaledNoder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentIntersectionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentIntersectionDetector.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentIntersector.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentNode.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentNodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentNodeList.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentPointComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentPointComparator.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentSetMutualIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentSetMutualIntersector.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SegmentStringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SegmentStringUtil.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SimpleNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SimpleNoder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/SinglePassNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/SinglePassNoder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/snapround/HotPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/snapround/HotPixel.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/snapround/HotPixel.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/snapround/HotPixel.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/snapround/MCIndexPointSnapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/snapround/MCIndexPointSnapper.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/snapround/MCIndexSnapRounder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/snapround/MCIndexSnapRounder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/snapround/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/snapround/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/snapround/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/snapround/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/noding/snapround/SimpleSnapRounder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/noding/snapround/SimpleSnapRounder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/nodingSnapround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/nodingSnapround.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opBuffer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opDistance.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opLinemerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opLinemerge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opOverlay.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opPolygonize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opPolygonize.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opPredicate.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opRelate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opRelate.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/opValid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/opValid.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/GeometryGraphOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/GeometryGraphOperation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/IsSimpleOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/IsSimpleOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/BufferBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/BufferBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/BufferOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/BufferOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/BufferParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/BufferParameters.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/BufferSubgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/BufferSubgraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/OffsetCurveBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/OffsetCurveBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/OffsetCurveSetBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/OffsetCurveSetBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/OffsetSegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/OffsetSegmentString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/RightmostEdgeFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/RightmostEdgeFinder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/buffer/SubgraphDepthLocater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/buffer/SubgraphDepthLocater.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/distance/DistanceOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/distance/DistanceOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/distance/GeometryLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/distance/GeometryLocation.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/distance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/distance/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/distance/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/distance/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/intersection/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/intersection/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/intersection/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/intersection/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/intersection/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/intersection/Rectangle.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/linemerge/EdgeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/linemerge/EdgeString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/linemerge/LineMergeEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/linemerge/LineMergeEdge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/linemerge/LineMergeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/linemerge/LineMergeGraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/linemerge/LineMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/linemerge/LineMerger.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/linemerge/LineSequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/linemerge/LineSequencer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/linemerge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/linemerge/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/linemerge/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/linemerge/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/EdgeSetNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/EdgeSetNoder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/ElevationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/ElevationMatrix.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/ElevationMatrixCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/ElevationMatrixCell.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/LineBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/LineBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/MaximalEdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/MaximalEdgeRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/MinimalEdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/MinimalEdgeRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/MinimalEdgeRing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/MinimalEdgeRing.inl -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/OverlayNodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/OverlayNodeFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/OverlayOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/OverlayOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/PointBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/PointBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/PolygonBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/PolygonBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/snap/GeometrySnapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/snap/GeometrySnapper.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/snap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/snap/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/snap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/snap/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/overlay/snap/SnapOverlayOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/overlay/snap/SnapOverlayOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/polygonize/EdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/polygonize/EdgeRing.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/polygonize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/polygonize/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/polygonize/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/polygonize/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/polygonize/PolygonizeEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/polygonize/PolygonizeEdge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/polygonize/PolygonizeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/polygonize/PolygonizeGraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/polygonize/Polygonizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/polygonize/Polygonizer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/predicate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/predicate/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/predicate/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/predicate/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/EdgeEndBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/EdgeEndBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/EdgeEndBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/EdgeEndBundle.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/EdgeEndBundleStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/EdgeEndBundleStar.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/RelateComputer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/RelateComputer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/RelateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/RelateNode.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/RelateNodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/RelateNodeFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/RelateNodeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/RelateNodeGraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/relate/RelateOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/relate/RelateOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/sharedpaths/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/sharedpaths/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/sharedpaths/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/sharedpaths/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/sharedpaths/SharedPathsOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/sharedpaths/SharedPathsOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/union/CascadedPolygonUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/union/CascadedPolygonUnion.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/union/CascadedUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/union/CascadedUnion.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/union/GeometryListHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/union/GeometryListHolder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/union/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/union/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/union/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/union/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/union/PointGeometryUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/union/PointGeometryUnion.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/union/UnaryUnionOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/union/UnaryUnionOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/valid/ConsistentAreaTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/valid/ConsistentAreaTester.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/valid/IsValidOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/valid/IsValidOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/valid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/valid/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/valid/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/valid/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/operation/valid/RepeatedPointTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/operation/valid/RepeatedPointTester.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/DirectedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/DirectedEdge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/DirectedEdgeStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/DirectedEdgeStar.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/Edge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/GraphComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/GraphComponent.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/Node.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/NodeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/NodeMap.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/PlanarGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/PlanarGraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/Subgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/Subgraph.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/algorithm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/algorithm/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/planargraph/algorithm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/planargraph/algorithm/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/platform.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/platform.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/platform.h.cmake -------------------------------------------------------------------------------- /Pods/geos/include/geos/platform.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/platform.h.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/platform.h.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/platform.h.vc -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision/CommonBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision/CommonBits.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision/CommonBitsOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision/CommonBitsOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision/CommonBitsRemover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision/CommonBitsRemover.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision/EnhancedPrecisionOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision/EnhancedPrecisionOp.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision/GeometryPrecisionReducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision/GeometryPrecisionReducer.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/precision/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/precision/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/profiler.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/DouglasPeuckerSimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/DouglasPeuckerSimplifier.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/LineSegmentIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/LineSegmentIndex.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/TaggedLineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/TaggedLineSegment.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/TaggedLineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/TaggedLineString.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/TaggedLineStringSimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/TaggedLineStringSimplifier.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/simplify/TaggedLinesSimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/simplify/TaggedLinesSimplifier.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/spatialIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/spatialIndex.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/timeval.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/VoronoiDiagramBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/VoronoiDiagramBuilder.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/quadedge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/quadedge/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/quadedge/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/quadedge/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/quadedge/QuadEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/quadedge/QuadEdge.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/quadedge/QuadEdgeLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/quadedge/QuadEdgeLocator.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/quadedge/TriangleVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/quadedge/TriangleVisitor.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/triangulate/quadedge/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/triangulate/quadedge/Vertex.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/unload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/unload.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/Assert.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/AssertionFailedException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/AssertionFailedException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/CoordinateArrayFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/CoordinateArrayFilter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/GEOSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/GEOSException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/GeometricShapeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/GeometricShapeFactory.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/IllegalArgumentException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/IllegalArgumentException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/IllegalStateException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/IllegalStateException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/Interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/Interrupt.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/Machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/Machine.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/Makefile -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/Makefile.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/TopologyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/TopologyException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/UniqueCoordinateArrayFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/UniqueCoordinateArrayFilter.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/UnsupportedOperationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/UnsupportedOperationException.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/util/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/util/math.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/version.h -------------------------------------------------------------------------------- /Pods/geos/include/geos/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/version.h.in -------------------------------------------------------------------------------- /Pods/geos/include/geos/version.h.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/include/geos/version.h.vc -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/Angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/Angle.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/BoundaryNodeRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/BoundaryNodeRule.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/CGAlgorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/CGAlgorithms.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/Centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/Centroid.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/CentroidArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/CentroidArea.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/CentroidLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/CentroidLine.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/CentroidPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/CentroidPoint.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/ConvexHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/ConvexHull.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/HCoordinate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/HCoordinate.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/InteriorPointArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/InteriorPointArea.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/InteriorPointLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/InteriorPointLine.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/InteriorPointPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/InteriorPointPoint.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/LineIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/LineIntersector.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/MCPointInRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/MCPointInRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/MinimumDiameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/MinimumDiameter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/NotRepresentableException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/NotRepresentableException.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/PointLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/PointLocator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/RayCrossingCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/RayCrossingCounter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/RobustDeterminant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/RobustDeterminant.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/SIRtreePointInRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/SIRtreePointInRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/SimplePointInRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/SimplePointInRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/distance/DistanceToPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/distance/DistanceToPoint.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/locate/IndexedPointInAreaLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/locate/IndexedPointInAreaLocator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/locate/PointOnGeometryLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/locate/PointOnGeometryLocator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/algorithm/locate/SimplePointInAreaLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/algorithm/locate/SimplePointInAreaLocator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Coordinate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Coordinate.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/CoordinateArraySequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/CoordinateArraySequence.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/CoordinateArraySequenceFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/CoordinateArraySequenceFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/CoordinateSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/CoordinateSequence.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/CoordinateSequenceFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/CoordinateSequenceFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Dimension.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Envelope.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Geometry.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/GeometryCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/GeometryCollection.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/GeometryComponentFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/GeometryComponentFilter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/GeometryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/GeometryFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/GeometryList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/GeometryList.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/IntersectionMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/IntersectionMatrix.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/LineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/LineSegment.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/LineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/LineString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/LinearRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/LinearRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Location.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/MultiLineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/MultiLineString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/MultiPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/MultiPoint.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/MultiPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/MultiPolygon.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Point.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Polygon.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/PrecisionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/PrecisionModel.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/Triangle.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/AbstractPreparedPolygonContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/AbstractPreparedPolygonContains.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/BasicPreparedGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/BasicPreparedGeometry.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedGeometry.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedGeometryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedGeometryFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedLineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedLineString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedLineStringIntersects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedLineStringIntersects.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedPoint.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedPolygon.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedPolygonContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedPolygonContains.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedPolygonContainsProperly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedPolygonContainsProperly.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedPolygonCovers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedPolygonCovers.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedPolygonIntersects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedPolygonIntersects.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/prep/PreparedPolygonPredicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/prep/PreparedPolygonPredicate.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/ComponentCoordinateExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/ComponentCoordinateExtracter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/CoordinateOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/CoordinateOperation.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/GeometryCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/GeometryCombiner.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/GeometryEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/GeometryEditor.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/GeometryTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/GeometryTransformer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/LinearComponentExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/LinearComponentExtracter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/PointExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/PointExtracter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/PolygonExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/PolygonExtracter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/ShortCircuitedGeometryVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/ShortCircuitedGeometryVisitor.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geom/util/SineStarFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geom/util/SineStarFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/Depth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/Depth.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/DirectedEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/DirectedEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/DirectedEdgeStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/DirectedEdgeStar.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/Edge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/EdgeEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/EdgeEnd.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/EdgeEndStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/EdgeEndStar.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/EdgeIntersectionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/EdgeIntersectionList.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/EdgeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/EdgeList.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/EdgeNodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/EdgeNodingValidator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/EdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/EdgeRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/GeometryGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/GeometryGraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/GraphComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/GraphComponent.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/Label.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/Node.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/NodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/NodeFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/NodeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/NodeMap.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/PlanarGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/PlanarGraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/Position.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/Quadrant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/Quadrant.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/TopologyLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/TopologyLocation.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/index/MonotoneChainEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/index/MonotoneChainEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/index/MonotoneChainIndexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/index/MonotoneChainIndexer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/index/SegmentIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/index/SegmentIntersector.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/index/SimpleEdgeSetIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/index/SimpleEdgeSetIntersector.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/index/SimpleSweepLineIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/index/SimpleSweepLineIntersector.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/index/SweepLineEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/index/SweepLineEvent.cpp -------------------------------------------------------------------------------- /Pods/geos/src/geomgraph/index/SweepLineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/geomgraph/index/SweepLineSegment.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/bintree/Bintree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/bintree/Bintree.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/bintree/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/bintree/Interval.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/bintree/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/bintree/Key.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/bintree/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/bintree/Node.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/bintree/NodeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/bintree/NodeBase.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/bintree/Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/bintree/Root.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/chain/MonotoneChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/chain/MonotoneChain.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/chain/MonotoneChainBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/chain/MonotoneChainBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/chain/MonotoneChainOverlapAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/chain/MonotoneChainOverlapAction.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/chain/MonotoneChainSelectAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/chain/MonotoneChainSelectAction.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/intervalrtree/IntervalRTreeBranchNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/intervalrtree/IntervalRTreeBranchNode.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/intervalrtree/IntervalRTreeLeafNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/intervalrtree/IntervalRTreeLeafNode.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/intervalrtree/IntervalRTreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/intervalrtree/IntervalRTreeNode.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/quadtree/DoubleBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/quadtree/DoubleBits.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/quadtree/IntervalSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/quadtree/IntervalSize.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/quadtree/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/quadtree/Key.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/quadtree/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/quadtree/Node.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/quadtree/NodeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/quadtree/NodeBase.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/quadtree/Quadtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/quadtree/Quadtree.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/quadtree/Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/quadtree/Root.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/strtree/AbstractNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/strtree/AbstractNode.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/strtree/AbstractSTRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/strtree/AbstractSTRtree.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/strtree/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/strtree/Interval.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/strtree/ItemBoundable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/strtree/ItemBoundable.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/strtree/SIRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/strtree/SIRtree.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/strtree/STRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/strtree/STRtree.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/sweepline/SweepLineEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/sweepline/SweepLineEvent.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/sweepline/SweepLineIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/sweepline/SweepLineIndex.cpp -------------------------------------------------------------------------------- /Pods/geos/src/index/sweepline/SweepLineInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/index/sweepline/SweepLineInterval.cpp -------------------------------------------------------------------------------- /Pods/geos/src/inlines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/inlines.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/ByteOrderDataInStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/ByteOrderDataInStream.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/ByteOrderValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/ByteOrderValues.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/CLocalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/CLocalizer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/ParseException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/ParseException.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/StringTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/StringTokenizer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/Unload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/Unload.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/WKBReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/WKBReader.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/WKBWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/WKBWriter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/WKTReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/WKTReader.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/WKTWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/WKTWriter.cpp -------------------------------------------------------------------------------- /Pods/geos/src/io/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/io/Writer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/ExtractLineByLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/ExtractLineByLocation.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LengthIndexOfPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LengthIndexOfPoint.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LengthIndexedLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LengthIndexedLine.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LengthLocationMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LengthLocationMap.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LinearGeometryBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LinearGeometryBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LinearIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LinearIterator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LinearLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LinearLocation.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LocationIndexOfLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LocationIndexOfLine.cpp -------------------------------------------------------------------------------- /Pods/geos/src/linearref/LocationIndexOfPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/linearref/LocationIndexOfPoint.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/BasicSegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/BasicSegmentString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/FastNodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/FastNodingValidator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/FastSegmentSetIntersectionFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/FastSegmentSetIntersectionFinder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/GeometryNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/GeometryNoder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/IntersectionAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/IntersectionAdder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/IntersectionFinderAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/IntersectionFinderAdder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/IteratedNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/IteratedNoder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/MCIndexNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/MCIndexNoder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/MCIndexSegmentSetMutualIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/MCIndexSegmentSetMutualIntersector.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/NodedSegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/NodedSegmentString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/NodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/NodingValidator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/Octant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/Octant.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/OrientedCoordinateArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/OrientedCoordinateArray.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/ScaledNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/ScaledNoder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/SegmentIntersectionDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/SegmentIntersectionDetector.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/SegmentNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/SegmentNode.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/SegmentNodeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/SegmentNodeList.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/SegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/SegmentString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/SegmentStringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/SegmentStringUtil.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/SimpleNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/SimpleNoder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/SingleInteriorIntersectionFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/SingleInteriorIntersectionFinder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/snapround/HotPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/snapround/HotPixel.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/snapround/MCIndexPointSnapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/snapround/MCIndexPointSnapper.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/snapround/MCIndexSnapRounder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/snapround/MCIndexSnapRounder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/noding/snapround/SimpleSnapRounder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/noding/snapround/SimpleSnapRounder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/GeometryGraphOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/GeometryGraphOperation.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/IsSimpleOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/IsSimpleOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/BufferBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/BufferBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/BufferInputLineSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/BufferInputLineSimplifier.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/BufferOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/BufferOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/BufferParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/BufferParameters.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/BufferSubgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/BufferSubgraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/OffsetCurveBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/OffsetCurveBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/OffsetCurveSetBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/OffsetCurveSetBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/OffsetSegmentGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/OffsetSegmentGenerator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/RightmostEdgeFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/RightmostEdgeFinder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/buffer/SubgraphDepthLocater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/buffer/SubgraphDepthLocater.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/distance/DistanceOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/distance/DistanceOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/distance/GeometryLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/distance/GeometryLocation.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/intersection/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/intersection/Rectangle.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/linemerge/EdgeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/linemerge/EdgeString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/linemerge/LineMergeDirectedEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/linemerge/LineMergeDirectedEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/linemerge/LineMergeEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/linemerge/LineMergeEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/linemerge/LineMergeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/linemerge/LineMergeGraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/linemerge/LineMerger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/linemerge/LineMerger.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/linemerge/LineSequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/linemerge/LineSequencer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/EdgeSetNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/EdgeSetNoder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/ElevationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/ElevationMatrix.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/ElevationMatrixCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/ElevationMatrixCell.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/LineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/LineBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/MaximalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/MaximalEdgeRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/MinimalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/MinimalEdgeRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/OverlayNodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/OverlayNodeFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/OverlayOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/OverlayOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/PointBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/PointBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/PolygonBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/PolygonBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/snap/GeometrySnapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/snap/GeometrySnapper.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/snap/LineStringSnapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/snap/LineStringSnapper.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/overlay/snap/SnapOverlayOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/overlay/snap/SnapOverlayOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/polygonize/EdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/polygonize/EdgeRing.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/polygonize/PolygonizeDirectedEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/polygonize/PolygonizeDirectedEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/polygonize/PolygonizeEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/polygonize/PolygonizeEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/polygonize/PolygonizeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/polygonize/PolygonizeGraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/polygonize/Polygonizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/polygonize/Polygonizer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/predicate/RectangleContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/predicate/RectangleContains.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/predicate/RectangleIntersects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/predicate/RectangleIntersects.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/EdgeEndBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/EdgeEndBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/EdgeEndBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/EdgeEndBundle.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/EdgeEndBundleStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/EdgeEndBundleStar.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/RelateComputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/RelateComputer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/RelateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/RelateNode.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/RelateNodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/RelateNodeFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/RelateNodeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/RelateNodeGraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/relate/RelateOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/relate/RelateOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/sharedpaths/SharedPathsOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/sharedpaths/SharedPathsOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/union/CascadedPolygonUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/union/CascadedPolygonUnion.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/union/CascadedUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/union/CascadedUnion.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/union/PointGeometryUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/union/PointGeometryUnion.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/union/UnaryUnionOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/union/UnaryUnionOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/ConnectedInteriorTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/ConnectedInteriorTester.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/ConsistentAreaTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/ConsistentAreaTester.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/IndexedNestedRingTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/IndexedNestedRingTester.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/IndexedNestedRingTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/IndexedNestedRingTester.h -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/IsValidOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/IsValidOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/QuadtreeNestedRingTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/QuadtreeNestedRingTester.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/RepeatedPointTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/RepeatedPointTester.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/SimpleNestedRingTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/SimpleNestedRingTester.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/SweeplineNestedRingTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/SweeplineNestedRingTester.cpp -------------------------------------------------------------------------------- /Pods/geos/src/operation/valid/TopologyValidationError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/operation/valid/TopologyValidationError.cpp -------------------------------------------------------------------------------- /Pods/geos/src/planargraph/DirectedEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/planargraph/DirectedEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/planargraph/DirectedEdgeStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/planargraph/DirectedEdgeStar.cpp -------------------------------------------------------------------------------- /Pods/geos/src/planargraph/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/planargraph/Edge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/planargraph/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/planargraph/Node.cpp -------------------------------------------------------------------------------- /Pods/geos/src/planargraph/NodeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/planargraph/NodeMap.cpp -------------------------------------------------------------------------------- /Pods/geos/src/planargraph/PlanarGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/planargraph/PlanarGraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/planargraph/Subgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/planargraph/Subgraph.cpp -------------------------------------------------------------------------------- /Pods/geos/src/precision/CommonBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/precision/CommonBits.cpp -------------------------------------------------------------------------------- /Pods/geos/src/precision/CommonBitsOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/precision/CommonBitsOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/precision/CommonBitsRemover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/precision/CommonBitsRemover.cpp -------------------------------------------------------------------------------- /Pods/geos/src/precision/EnhancedPrecisionOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/precision/EnhancedPrecisionOp.cpp -------------------------------------------------------------------------------- /Pods/geos/src/precision/GeometryPrecisionReducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/precision/GeometryPrecisionReducer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/precision/SimpleGeometryPrecisionReducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/precision/SimpleGeometryPrecisionReducer.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/DouglasPeuckerLineSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/DouglasPeuckerLineSimplifier.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/DouglasPeuckerSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/DouglasPeuckerSimplifier.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/LineSegmentIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/LineSegmentIndex.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/TaggedLineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/TaggedLineSegment.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/TaggedLineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/TaggedLineString.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/TaggedLineStringSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/TaggedLineStringSimplifier.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/TaggedLinesSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/TaggedLinesSimplifier.cpp -------------------------------------------------------------------------------- /Pods/geos/src/simplify/TopologyPreservingSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/simplify/TopologyPreservingSimplifier.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/DelaunayTriangulationBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/DelaunayTriangulationBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/IncrementalDelaunayTriangulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/IncrementalDelaunayTriangulator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/VoronoiDiagramBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/VoronoiDiagramBuilder.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/quadedge/LocateFailureException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/quadedge/LocateFailureException.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/quadedge/QuadEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/quadedge/QuadEdge.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/quadedge/QuadEdgeLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/quadedge/QuadEdgeLocator.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/quadedge/QuadEdgeSubdivision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/quadedge/QuadEdgeSubdivision.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/quadedge/TrianglePredicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/quadedge/TrianglePredicate.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/quadedge/TriangleVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/quadedge/TriangleVisitor.cpp -------------------------------------------------------------------------------- /Pods/geos/src/triangulate/quadedge/Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/triangulate/quadedge/Vertex.cpp -------------------------------------------------------------------------------- /Pods/geos/src/util/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/util/Assert.cpp -------------------------------------------------------------------------------- /Pods/geos/src/util/GeometricShapeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/util/GeometricShapeFactory.cpp -------------------------------------------------------------------------------- /Pods/geos/src/util/Interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/util/Interrupt.cpp -------------------------------------------------------------------------------- /Pods/geos/src/util/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/util/Profiler.cpp -------------------------------------------------------------------------------- /Pods/geos/src/util/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/Pods/geos/src/util/math.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/README.md -------------------------------------------------------------------------------- /SwiftVectorTiles.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles.podspec -------------------------------------------------------------------------------- /SwiftVectorTiles.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftVectorTiles.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftVectorTiles/Attribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/Attribute.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/Command.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/Info.plist -------------------------------------------------------------------------------- /SwiftVectorTiles/MadCoordinateSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadCoordinateSequence.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadGeometry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadGeometry.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadGeometryCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadGeometryCollection.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadGeometryFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadGeometryFactory.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadGeometryType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadGeometryType.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadLineString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadLineString.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadLinearRing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadLinearRing.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadMultiGeometry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadMultiGeometry.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadMultiLineString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadMultiLineString.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadMultiPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadMultiPoint.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadMultiPolygon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadMultiPolygon.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadPoint.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/MadPolygon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/MadPolygon.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/SwiftVectorTiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/SwiftVectorTiles.h -------------------------------------------------------------------------------- /SwiftVectorTiles/VectorTile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/VectorTile.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/VectorTileEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/VectorTileEncoder.swift -------------------------------------------------------------------------------- /SwiftVectorTiles/geos/Geos.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTiles/geos/Geos.swift -------------------------------------------------------------------------------- /SwiftVectorTilesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTilesTests/Info.plist -------------------------------------------------------------------------------- /SwiftVectorTilesTests/MadGeometryTransformTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTilesTests/MadGeometryTransformTests.swift -------------------------------------------------------------------------------- /SwiftVectorTilesTests/MadGeometryTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTilesTests/MadGeometryTypeTests.swift -------------------------------------------------------------------------------- /SwiftVectorTilesTests/SwiftVectorTilesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/SwiftVectorTilesTests/SwiftVectorTilesTests.swift -------------------------------------------------------------------------------- /proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/proto/README.md -------------------------------------------------------------------------------- /proto/vector_tile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/proto/vector_tile.proto -------------------------------------------------------------------------------- /screenshots/shot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/screenshots/shot1.png -------------------------------------------------------------------------------- /screenshots/shot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manimaul/SwiftVectorTiles/HEAD/screenshots/shot2.png --------------------------------------------------------------------------------