├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── COPYING └── geos │ ├── capi │ ├── geos_c.cpp │ └── geos_ts_c.cpp │ ├── include │ ├── geos.h │ └── geos │ │ ├── algorithm │ │ ├── Angle.h │ │ ├── Area.h │ │ ├── BoundaryNodeRule.h │ │ ├── CGAlgorithmsDD.h │ │ ├── CentralEndpointIntersector.h │ │ ├── Centroid.h │ │ ├── CircularArcs.h │ │ ├── ConvexHull.h │ │ ├── Distance.h │ │ ├── HCoordinate.h │ │ ├── InteriorPointArea.h │ │ ├── InteriorPointLine.h │ │ ├── InteriorPointPoint.h │ │ ├── Interpolate.h │ │ ├── Intersection.h │ │ ├── Length.h │ │ ├── LineIntersector.h │ │ ├── MinimumAreaRectangle.h │ │ ├── MinimumBoundingCircle.h │ │ ├── MinimumDiameter.h │ │ ├── NotRepresentableException.h │ │ ├── Orientation.h │ │ ├── PointInRing.h │ │ ├── PointLocation.h │ │ ├── PointLocator.h │ │ ├── PolygonNodeTopology.h │ │ ├── RayCrossingCounter.h │ │ ├── Rectangle.h │ │ ├── RobustDeterminant.h │ │ ├── construct │ │ │ ├── ExactMaxInscribedCircle.h │ │ │ ├── IndexedDistanceToPoint.h │ │ │ ├── IndexedPointInPolygonsLocator.h │ │ │ ├── LargestEmptyCircle.h │ │ │ └── MaximumInscribedCircle.h │ │ ├── distance │ │ │ ├── DiscreteFrechetDistance.h │ │ │ ├── DiscreteHausdorffDistance.h │ │ │ ├── DistanceToPoint.h │ │ │ └── PointPairDistance.h │ │ ├── hull │ │ │ ├── ConcaveHull.h │ │ │ ├── ConcaveHullOfPolygons.h │ │ │ ├── HullTri.h │ │ │ ├── HullTriangulation.h │ │ │ └── OuterShellsExtracter.h │ │ └── locate │ │ │ ├── IndexedPointInAreaLocator.h │ │ │ ├── PointOnGeometryLocator.h │ │ │ └── SimplePointInAreaLocator.h │ │ ├── constants.h │ │ ├── coverage │ │ ├── CleanCoverage.h │ │ ├── Corner.h │ │ ├── CoverageBoundarySegmentFinder.h │ │ ├── CoverageCleaner.h │ │ ├── CoverageEdge.h │ │ ├── CoverageGapFinder.h │ │ ├── CoveragePolygon.h │ │ ├── CoveragePolygonValidator.h │ │ ├── CoverageRing.h │ │ ├── CoverageRingEdges.h │ │ ├── CoverageSimplifier.h │ │ ├── CoverageUnion.h │ │ ├── CoverageValidator.h │ │ ├── InvalidSegmentDetector.h │ │ ├── TPVWSimplifier.h │ │ └── VertexRingCounter.h │ │ ├── dissolve │ │ ├── DissolveEdgeGraph.h │ │ ├── DissolveHalfEdge.h │ │ └── LineDissolver.h │ │ ├── edgegraph │ │ ├── EdgeGraph.h │ │ ├── EdgeGraphBuilder.h │ │ ├── HalfEdge.h │ │ └── MarkHalfEdge.h │ │ ├── geom.h │ │ ├── geom │ │ ├── CircularArc.h │ │ ├── CircularString.h │ │ ├── CompoundCurve.h │ │ ├── Coordinate.h │ │ ├── CoordinateFilter.h │ │ ├── CoordinateList.h │ │ ├── CoordinateSequence.h │ │ ├── CoordinateSequenceFilter.h │ │ ├── CoordinateSequenceIterator.h │ │ ├── CoordinateSequences.h │ │ ├── Curve.h │ │ ├── CurvePolygon.h │ │ ├── Dimension.h │ │ ├── Envelope.h │ │ ├── Geometry.h │ │ ├── GeometryCollection.h │ │ ├── GeometryComponentFilter.h │ │ ├── GeometryFactory.h │ │ ├── GeometryFilter.h │ │ ├── GeometryTypeName.h │ │ ├── HeuristicOverlay.h │ │ ├── IntersectionMatrix.h │ │ ├── LineSegment.h │ │ ├── LineString.h │ │ ├── LinearRing.h │ │ ├── Location.h │ │ ├── MultiCurve.h │ │ ├── MultiLineString.h │ │ ├── MultiPoint.h │ │ ├── MultiPolygon.h │ │ ├── MultiSurface.h │ │ ├── Point.h │ │ ├── Polygon.h │ │ ├── Position.h │ │ ├── PrecisionModel.h │ │ ├── Quadrant.h │ │ ├── SimpleCurve.h │ │ ├── Surface.h │ │ ├── SurfaceImpl.h │ │ ├── Triangle.h │ │ ├── prep │ │ │ ├── AbstractPreparedPolygonContains.h │ │ │ ├── BasicPreparedGeometry.h │ │ │ ├── PreparedGeometry.h │ │ │ ├── PreparedGeometryFactory.h │ │ │ ├── PreparedLineString.h │ │ │ ├── PreparedLineStringDistance.h │ │ │ ├── PreparedLineStringIntersects.h │ │ │ ├── PreparedLineStringNearestPoints.h │ │ │ ├── PreparedPoint.h │ │ │ ├── PreparedPolygon.h │ │ │ ├── PreparedPolygonContains.h │ │ │ ├── PreparedPolygonContainsProperly.h │ │ │ ├── PreparedPolygonCovers.h │ │ │ ├── PreparedPolygonDistance.h │ │ │ ├── PreparedPolygonIntersects.h │ │ │ └── PreparedPolygonPredicate.h │ │ └── util │ │ │ ├── ComponentCoordinateExtracter.h │ │ │ ├── CoordinateOperation.h │ │ │ ├── Densifier.h │ │ │ ├── GeometryCombiner.h │ │ │ ├── GeometryEditor.h │ │ │ ├── GeometryEditorOperation.h │ │ │ ├── GeometryExtracter.h │ │ │ ├── GeometryFixer.h │ │ │ ├── GeometryLister.h │ │ │ ├── GeometryMapper.h │ │ │ ├── GeometryTransformer.h │ │ │ ├── LinearComponentExtracter.h │ │ │ ├── NoOpGeometryOperation.h │ │ │ ├── PointExtracter.h │ │ │ ├── PolygonExtracter.h │ │ │ ├── PolygonalExtracter.h │ │ │ ├── ShortCircuitedGeometryVisitor.h │ │ │ └── SineStarFactory.h │ │ ├── geomgraph │ │ ├── Depth.h │ │ ├── DirectedEdge.h │ │ ├── DirectedEdgeStar.h │ │ ├── Edge.h │ │ ├── EdgeEnd.h │ │ ├── EdgeEndStar.h │ │ ├── EdgeIntersection.h │ │ ├── EdgeIntersectionList.h │ │ ├── EdgeList.h │ │ ├── EdgeNodingValidator.h │ │ ├── EdgeRing.h │ │ ├── GeometryGraph.h │ │ ├── GraphComponent.h │ │ ├── Label.h │ │ ├── Node.h │ │ ├── NodeFactory.h │ │ ├── NodeMap.h │ │ ├── PlanarGraph.h │ │ ├── TopologyLocation.h │ │ └── index │ │ │ ├── EdgeSetIntersector.h │ │ │ ├── MonotoneChain.h │ │ │ ├── MonotoneChainEdge.h │ │ │ ├── MonotoneChainIndexer.h │ │ │ ├── SegmentIntersector.h │ │ │ ├── SimpleEdgeSetIntersector.h │ │ │ ├── SimpleMCSweepLineIntersector.h │ │ │ ├── SimpleSweepLineIntersector.h │ │ │ ├── SweepLineEvent.h │ │ │ ├── SweepLineEventObj.h │ │ │ └── SweepLineSegment.h │ │ ├── index │ │ ├── ItemVisitor.h │ │ ├── SpatialIndex.h │ │ ├── VertexSequencePackedRtree.h │ │ ├── bintree │ │ │ ├── Bintree.h │ │ │ ├── Interval.h │ │ │ ├── Key.h │ │ │ ├── Node.h │ │ │ ├── NodeBase.h │ │ │ └── Root.h │ │ ├── chain │ │ │ ├── MonotoneChain.h │ │ │ ├── MonotoneChainBuilder.h │ │ │ ├── MonotoneChainOverlapAction.h │ │ │ └── MonotoneChainSelectAction.h │ │ ├── intervalrtree │ │ │ ├── IntervalRTreeBranchNode.h │ │ │ ├── IntervalRTreeLeafNode.h │ │ │ ├── IntervalRTreeNode.h │ │ │ └── SortedPackedIntervalRTree.h │ │ ├── kdtree │ │ │ ├── KdNode.h │ │ │ ├── KdNodeVisitor.h │ │ │ └── KdTree.h │ │ ├── quadtree │ │ │ ├── IntervalSize.h │ │ │ ├── Key.h │ │ │ ├── Node.h │ │ │ ├── NodeBase.h │ │ │ ├── Quadtree.h │ │ │ └── Root.h │ │ ├── strtree │ │ │ ├── AbstractNode.h │ │ │ ├── AbstractSTRtree.h │ │ │ ├── Boundable.h │ │ │ ├── BoundablePair.h │ │ │ ├── EnvelopeUtil.h │ │ │ ├── GeometryItemDistance.h │ │ │ ├── Interval.h │ │ │ ├── ItemBoundable.h │ │ │ ├── ItemDistance.h │ │ │ ├── SIRtree.h │ │ │ ├── STRtree.h │ │ │ ├── SimpleSTRdistance.h │ │ │ ├── SimpleSTRnode.h │ │ │ ├── SimpleSTRtree.h │ │ │ ├── TemplateSTRNode.h │ │ │ ├── TemplateSTRNodePair.h │ │ │ ├── TemplateSTRtree.h │ │ │ └── TemplateSTRtreeDistance.h │ │ └── sweepline │ │ │ ├── SweepLineEvent.h │ │ │ ├── SweepLineIndex.h │ │ │ ├── SweepLineInterval.h │ │ │ └── SweepLineOverlapAction.h │ │ ├── io │ │ ├── ByteOrderDataInStream.h │ │ ├── ByteOrderValues.h │ │ ├── CLocalizer.h │ │ ├── CheckOrdinatesFilter.h │ │ ├── GeoJSON.h │ │ ├── GeoJSONReader.h │ │ ├── GeoJSONWriter.h │ │ ├── OrdinateSet.h │ │ ├── ParseException.h │ │ ├── StringTokenizer.h │ │ ├── WKBConstants.h │ │ ├── WKBReader.h │ │ ├── WKBStreamReader.h │ │ ├── WKBWriter.h │ │ ├── WKTFileReader.h │ │ ├── WKTReader.h │ │ ├── WKTStreamReader.h │ │ ├── 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 │ │ ├── math │ │ └── DD.h │ │ ├── namespaces.h │ │ ├── noding │ │ ├── BasicSegmentString.h │ │ ├── BoundaryChainNoder.h │ │ ├── FastNodingValidator.h │ │ ├── FastSegmentSetIntersectionFinder.h │ │ ├── GeometryNoder.h │ │ ├── IntersectionAdder.h │ │ ├── IntersectionFinderAdder.h │ │ ├── IteratedNoder.h │ │ ├── MCIndexNoder.h │ │ ├── MCIndexSegmentSetMutualIntersector.h │ │ ├── NodableSegmentString.h │ │ ├── NodedSegmentString.h │ │ ├── Noder.h │ │ ├── NodingIntersectionFinder.h │ │ ├── NodingValidator.h │ │ ├── Octant.h │ │ ├── OrientedCoordinateArray.h │ │ ├── ScaledNoder.h │ │ ├── SegmentExtractingNoder.h │ │ ├── SegmentIntersectionDetector.h │ │ ├── SegmentIntersector.h │ │ ├── SegmentNode.h │ │ ├── SegmentNodeList.h │ │ ├── SegmentPointComparator.h │ │ ├── SegmentSetMutualIntersector.h │ │ ├── SegmentString.h │ │ ├── SegmentStringUtil.h │ │ ├── SimpleNoder.h │ │ ├── SinglePassNoder.h │ │ ├── ValidatingNoder.h │ │ ├── snap │ │ │ ├── SnappingIntersectionAdder.h │ │ │ ├── SnappingNoder.h │ │ │ └── SnappingPointIndex.h │ │ └── snapround │ │ │ ├── HotPixel.h │ │ │ ├── HotPixelIndex.h │ │ │ ├── MCIndexPointSnapper.h │ │ │ ├── MCIndexSnapRounder.h │ │ │ ├── SnapRoundingIntersectionAdder.h │ │ │ └── SnapRoundingNoder.h │ │ ├── operation │ │ ├── BoundaryOp.h │ │ ├── GeometryGraphOperation.h │ │ ├── buffer │ │ │ ├── BufferBuilder.h │ │ │ ├── BufferCurveSetBuilder.h │ │ │ ├── BufferInputLineSimplifier.h │ │ │ ├── BufferNodeFactory.h │ │ │ ├── BufferOp.h │ │ │ ├── BufferParameters.h │ │ │ ├── BufferSubgraph.h │ │ │ ├── MaximalEdgeRing.h │ │ │ ├── MinimalEdgeRing.h │ │ │ ├── OffsetCurve.h │ │ │ ├── OffsetCurveBuilder.h │ │ │ ├── OffsetCurveSection.h │ │ │ ├── OffsetSegmentGenerator.h │ │ │ ├── OffsetSegmentString.h │ │ │ ├── PolygonBuilder.h │ │ │ ├── RightmostEdgeFinder.h │ │ │ ├── SegmentMCIndex.h │ │ │ └── SubgraphDepthLocater.h │ │ ├── cluster │ │ │ ├── AbstractClusterFinder.h │ │ │ ├── Clusters.h │ │ │ ├── DBSCANClusterFinder.h │ │ │ ├── DisjointOperation.h │ │ │ ├── EnvelopeDistanceClusterFinder.h │ │ │ ├── EnvelopeIntersectsClusterFinder.h │ │ │ ├── GeometryDistanceClusterFinder.h │ │ │ ├── GeometryFlattener.h │ │ │ ├── GeometryIntersectsClusterFinder.h │ │ │ └── UnionFind.h │ │ ├── distance │ │ │ ├── ConnectedElementLocationFilter.h │ │ │ ├── ConnectedElementPointFilter.h │ │ │ ├── DistanceOp.h │ │ │ ├── FacetSequence.h │ │ │ ├── FacetSequenceTreeBuilder.h │ │ │ ├── GeometryLocation.h │ │ │ └── IndexedFacetDistance.h │ │ ├── grid │ │ │ ├── Cell.h │ │ │ ├── Crossing.h │ │ │ ├── FloodFill.h │ │ │ ├── Grid.h │ │ │ ├── GridIntersection.h │ │ │ ├── Matrix.h │ │ │ ├── PerimeterDistance.h │ │ │ ├── Side.h │ │ │ ├── Traversal.h │ │ │ └── TraversalAreas.h │ │ ├── intersection │ │ │ ├── Rectangle.h │ │ │ ├── RectangleIntersection.h │ │ │ └── RectangleIntersectionBuilder.h │ │ ├── linemerge │ │ │ ├── EdgeString.h │ │ │ ├── LineMergeDirectedEdge.h │ │ │ ├── LineMergeEdge.h │ │ │ ├── LineMergeGraph.h │ │ │ ├── LineMerger.h │ │ │ └── LineSequencer.h │ │ ├── overlay │ │ │ ├── snap │ │ │ │ ├── GeometrySnapper.h │ │ │ │ ├── LineStringSnapper.h │ │ │ │ └── SnapOverlayOp.h │ │ │ └── validate │ │ │ │ ├── FuzzyPointLocator.h │ │ │ │ ├── OffsetPointGenerator.h │ │ │ │ └── OverlayResultValidator.h │ │ ├── overlayng │ │ │ ├── CoverageUnion.h │ │ │ ├── Edge.h │ │ │ ├── EdgeKey.h │ │ │ ├── EdgeMerger.h │ │ │ ├── EdgeNodingBuilder.h │ │ │ ├── EdgeSourceInfo.h │ │ │ ├── ElevationModel.h │ │ │ ├── IndexedPointOnLineLocator.h │ │ │ ├── InputGeometry.h │ │ │ ├── IntersectionPointBuilder.h │ │ │ ├── LineBuilder.h │ │ │ ├── LineLimiter.h │ │ │ ├── MaximalEdgeRing.h │ │ │ ├── OverlayEdge.h │ │ │ ├── OverlayEdgeRing.h │ │ │ ├── OverlayGraph.h │ │ │ ├── OverlayLabel.h │ │ │ ├── OverlayLabeller.h │ │ │ ├── OverlayMixedPoints.h │ │ │ ├── OverlayNG.h │ │ │ ├── OverlayNGRobust.h │ │ │ ├── OverlayPoints.h │ │ │ ├── OverlayUtil.h │ │ │ ├── PolygonBuilder.h │ │ │ ├── PrecisionReducer.h │ │ │ ├── PrecisionUtil.h │ │ │ ├── RingClipper.h │ │ │ ├── RobustClipEnvelopeComputer.h │ │ │ └── UnaryUnionNG.h │ │ ├── polygonize │ │ │ ├── BuildArea.h │ │ │ ├── EdgeRing.h │ │ │ ├── HoleAssigner.h │ │ │ ├── PolygonizeDirectedEdge.h │ │ │ ├── PolygonizeEdge.h │ │ │ ├── PolygonizeGraph.h │ │ │ └── Polygonizer.h │ │ ├── predicate │ │ │ ├── RectangleContains.h │ │ │ ├── RectangleIntersects.h │ │ │ └── SegmentIntersectionTester.h │ │ ├── relate │ │ │ ├── EdgeEndBuilder.h │ │ │ ├── EdgeEndBundle.h │ │ │ ├── EdgeEndBundleStar.h │ │ │ ├── RelateComputer.h │ │ │ ├── RelateNode.h │ │ │ ├── RelateNodeFactory.h │ │ │ ├── RelateNodeGraph.h │ │ │ └── RelateOp.h │ │ ├── relateng │ │ │ ├── AdjacentEdgeLocator.h │ │ │ ├── BasicPredicate.h │ │ │ ├── DimensionLocation.h │ │ │ ├── EdgeSegmentIntersector.h │ │ │ ├── EdgeSegmentOverlapAction.h │ │ │ ├── EdgeSetIntersector.h │ │ │ ├── IMPatternMatcher.h │ │ │ ├── IMPredicate.h │ │ │ ├── IntersectionMatrixPattern.h │ │ │ ├── LineStringExtracter.h │ │ │ ├── LinearBoundary.h │ │ │ ├── NodeSection.h │ │ │ ├── NodeSections.h │ │ │ ├── PolygonNodeConverter.h │ │ │ ├── RelateEdge.h │ │ │ ├── RelateGeometry.h │ │ │ ├── RelateMatrixPredicate.h │ │ │ ├── RelateNG.h │ │ │ ├── RelateNode.h │ │ │ ├── RelatePointLocator.h │ │ │ ├── RelatePredicate.h │ │ │ ├── RelateSegmentString.h │ │ │ ├── TopologyComputer.h │ │ │ └── TopologyPredicate.h │ │ ├── sharedpaths │ │ │ └── SharedPathsOp.h │ │ ├── union │ │ │ ├── CascadedPolygonUnion.h │ │ │ ├── CoverageUnion.h │ │ │ ├── DisjointSubsetUnion.h │ │ │ ├── OverlapUnion.h │ │ │ ├── PointGeometryUnion.h │ │ │ ├── UnaryUnionOp.h │ │ │ └── UnionStrategy.h │ │ └── valid │ │ │ ├── ConsistentAreaTester.h │ │ │ ├── IndexedNestedHoleTester.h │ │ │ ├── IndexedNestedPolygonTester.h │ │ │ ├── IsSimpleOp.h │ │ │ ├── IsValidOp.h │ │ │ ├── MakeValid.h │ │ │ ├── PolygonIntersectionAnalyzer.h │ │ │ ├── PolygonRing.h │ │ │ ├── PolygonRingSelfNode.h │ │ │ ├── PolygonRingTouch.h │ │ │ ├── PolygonTopologyAnalyzer.h │ │ │ ├── RepeatedPointRemover.h │ │ │ ├── RepeatedPointTester.h │ │ │ └── TopologyValidationError.h │ │ ├── planargraph │ │ ├── DirectedEdge.h │ │ ├── DirectedEdgeStar.h │ │ ├── Edge.h │ │ ├── GraphComponent.h │ │ ├── Node.h │ │ ├── NodeMap.h │ │ ├── PlanarGraph.h │ │ ├── Subgraph.h │ │ └── algorithm │ │ │ └── ConnectedSubgraphFinder.h │ │ ├── precision │ │ ├── CommonBits.h │ │ ├── CommonBitsOp.h │ │ ├── CommonBitsRemover.h │ │ ├── EnhancedPrecisionOp.h │ │ ├── GeometryPrecisionReducer.h │ │ ├── MinimumClearance.h │ │ ├── PointwisePrecisionReducerTransformer.h │ │ ├── PrecisionReducerTransformer.h │ │ └── SimpleGeometryPrecisionReducer.h │ │ ├── profiler.h │ │ ├── shape │ │ └── fractal │ │ │ ├── HilbertCode.h │ │ │ ├── HilbertEncoder.h │ │ │ └── MortonCode.h │ │ ├── simplify │ │ ├── ComponentJumpChecker.h │ │ ├── DouglasPeuckerLineSimplifier.h │ │ ├── DouglasPeuckerSimplifier.h │ │ ├── LineSegmentIndex.h │ │ ├── LinkedLine.h │ │ ├── LinkedRing.h │ │ ├── PolygonHullSimplifier.h │ │ ├── RingHull.h │ │ ├── RingHullIndex.h │ │ ├── TaggedLineSegment.h │ │ ├── TaggedLineString.h │ │ ├── TaggedLineStringSimplifier.h │ │ ├── TaggedLinesSimplifier.h │ │ └── TopologyPreservingSimplifier.h │ │ ├── triangulate │ │ ├── DelaunayTriangulationBuilder.h │ │ ├── IncrementalDelaunayTriangulator.h │ │ ├── VoronoiDiagramBuilder.h │ │ ├── polygon │ │ │ ├── ConstrainedDelaunayTriangulator.h │ │ │ ├── PolygonEarClipper.h │ │ │ ├── PolygonHoleJoiner.h │ │ │ ├── PolygonNoder.h │ │ │ ├── PolygonTriangulator.h │ │ │ └── TriDelaunayImprover.h │ │ ├── quadedge │ │ │ ├── LastFoundQuadEdgeLocator.h │ │ │ ├── LocateFailureException.h │ │ │ ├── QuadEdge.h │ │ │ ├── QuadEdgeLocator.h │ │ │ ├── QuadEdgeQuartet.h │ │ │ ├── QuadEdgeSubdivision.h │ │ │ ├── TrianglePredicate.h │ │ │ ├── TriangleVisitor.h │ │ │ └── Vertex.h │ │ └── tri │ │ │ ├── Tri.h │ │ │ ├── TriEdge.h │ │ │ ├── TriList.h │ │ │ └── TriangulationBuilder.h │ │ ├── util.h │ │ ├── util │ │ ├── Assert.h │ │ ├── AssertionFailedException.h │ │ ├── CoordinateArrayFilter.h │ │ ├── GEOSException.h │ │ ├── GeometricShapeFactory.h │ │ ├── IllegalArgumentException.h │ │ ├── IllegalStateException.h │ │ ├── Interrupt.h │ │ ├── Machine.h │ │ ├── TopologyException.h │ │ ├── UniqueCoordinateArrayFilter.h │ │ ├── UnsupportedOperationException.h │ │ ├── math.h │ │ └── string.h │ │ ├── vend │ │ ├── include_nlohmann_json.hpp │ │ └── json.hpp │ │ └── version.h │ ├── public │ ├── geos │ │ └── export.h │ └── geos_c.h │ └── src │ ├── algorithm │ ├── Angle.cpp │ ├── Area.cpp │ ├── BoundaryNodeRule.cpp │ ├── CGAlgorithmsDD.cpp │ ├── Centroid.cpp │ ├── CircularArcs.cpp │ ├── ConvexHull.cpp │ ├── Distance.cpp │ ├── HCoordinate.cpp │ ├── InteriorPointArea.cpp │ ├── InteriorPointLine.cpp │ ├── InteriorPointPoint.cpp │ ├── Intersection.cpp │ ├── Length.cpp │ ├── LineIntersector.cpp │ ├── MinimumAreaRectangle.cpp │ ├── MinimumBoundingCircle.cpp │ ├── MinimumDiameter.cpp │ ├── NotRepresentableException.cpp │ ├── Orientation.cpp │ ├── PointLocation.cpp │ ├── PointLocator.cpp │ ├── PolygonNodeTopology.cpp │ ├── RayCrossingCounter.cpp │ ├── Rectangle.cpp │ ├── RobustDeterminant.cpp │ ├── construct │ │ ├── ExactMaxInscribedCircle.cpp │ │ ├── IndexedDistanceToPoint.cpp │ │ ├── IndexedPointInPolygonsLocator.cpp │ │ ├── LargestEmptyCircle.cpp │ │ └── MaximumInscribedCircle.cpp │ ├── distance │ │ ├── DiscreteFrechetDistance.cpp │ │ ├── DiscreteHausdorffDistance.cpp │ │ └── DistanceToPoint.cpp │ ├── hull │ │ ├── ConcaveHull.cpp │ │ ├── ConcaveHullOfPolygons.cpp │ │ ├── HullTri.cpp │ │ ├── HullTriangulation.cpp │ │ └── OuterShellsExtracter.cpp │ └── locate │ │ ├── IndexedPointInAreaLocator.cpp │ │ ├── PointOnGeometryLocator.cpp │ │ └── SimplePointInAreaLocator.cpp │ ├── coverage │ ├── CleanCoverage.cpp │ ├── Corner.cpp │ ├── CoverageBoundarySegmentFinder.cpp │ ├── CoverageCleaner.cpp │ ├── CoverageEdge.cpp │ ├── CoverageGapFinder.cpp │ ├── CoveragePolygon.cpp │ ├── CoveragePolygonValidator.cpp │ ├── CoverageRing.cpp │ ├── CoverageRingEdges.cpp │ ├── CoverageSimplifier.cpp │ ├── CoverageUnion.cpp │ ├── CoverageValidator.cpp │ ├── InvalidSegmentDetector.cpp │ ├── TPVWSimplifier.cpp │ └── VertexRingCounter.cpp │ ├── deps │ └── ryu │ │ ├── common.h │ │ ├── d2fixed_full_table.h │ │ ├── d2s.c │ │ ├── d2s_full_table.h │ │ ├── d2s_intrinsics.h │ │ ├── digit_table.h │ │ └── ryu.h │ ├── dissolve │ ├── DissolveEdgeGraph.cpp │ ├── DissolveHalfEdge.cpp │ └── LineDissolver.cpp │ ├── edgegraph │ ├── EdgeGraph.cpp │ ├── EdgeGraphBuilder.cpp │ ├── HalfEdge.cpp │ └── MarkHalfEdge.cpp │ ├── geom │ ├── CircularString.cpp │ ├── CompoundCurve.cpp │ ├── Coordinate.cpp │ ├── CoordinateSequence.cpp │ ├── Curve.cpp │ ├── CurvePolygon.cpp │ ├── Dimension.cpp │ ├── Envelope.cpp │ ├── Geometry.cpp │ ├── GeometryCollection.cpp │ ├── GeometryComponentFilter.cpp │ ├── GeometryFactory.cpp │ ├── HeuristicOverlay.cpp │ ├── IntersectionMatrix.cpp │ ├── LineSegment.cpp │ ├── LineString.cpp │ ├── LinearRing.cpp │ ├── Location.cpp │ ├── MultiCurve.cpp │ ├── MultiLineString.cpp │ ├── MultiPoint.cpp │ ├── MultiPolygon.cpp │ ├── MultiSurface.cpp │ ├── Point.cpp │ ├── Polygon.cpp │ ├── Position.cpp │ ├── PrecisionModel.cpp │ ├── Quadrant.cpp │ ├── SimpleCurve.cpp │ ├── Surface.cpp │ ├── Triangle.cpp │ ├── prep │ │ ├── AbstractPreparedPolygonContains.cpp │ │ ├── BasicPreparedGeometry.cpp │ │ ├── PreparedGeometry.cpp │ │ ├── PreparedGeometryFactory.cpp │ │ ├── PreparedLineString.cpp │ │ ├── PreparedLineStringDistance.cpp │ │ ├── PreparedLineStringIntersects.cpp │ │ ├── PreparedLineStringNearestPoints.cpp │ │ ├── PreparedPoint.cpp │ │ ├── PreparedPolygon.cpp │ │ ├── PreparedPolygonContains.cpp │ │ ├── PreparedPolygonContainsProperly.cpp │ │ ├── PreparedPolygonCovers.cpp │ │ ├── PreparedPolygonDistance.cpp │ │ ├── PreparedPolygonIntersects.cpp │ │ └── PreparedPolygonPredicate.cpp │ └── util │ │ ├── ComponentCoordinateExtracter.cpp │ │ ├── CoordinateOperation.cpp │ │ ├── Densifier.cpp │ │ ├── GeometryCombiner.cpp │ │ ├── GeometryEditor.cpp │ │ ├── GeometryFixer.cpp │ │ ├── GeometryMapper.cpp │ │ ├── GeometryTransformer.cpp │ │ ├── LinearComponentExtracter.cpp │ │ ├── NoOpGeometryOperation.cpp │ │ ├── PointExtracter.cpp │ │ ├── PolygonExtracter.cpp │ │ ├── PolygonalExtracter.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 │ ├── TopologyLocation.cpp │ └── index │ │ ├── MonotoneChainEdge.cpp │ │ ├── MonotoneChainIndexer.cpp │ │ ├── SegmentIntersector.cpp │ │ ├── SimpleEdgeSetIntersector.cpp │ │ ├── SimpleMCSweepLineIntersector.cpp │ │ ├── SimpleSweepLineIntersector.cpp │ │ ├── SweepLineEvent.cpp │ │ └── SweepLineSegment.cpp │ ├── index │ ├── VertexSequencePackedRtree.cpp │ ├── 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 │ │ └── SortedPackedIntervalRTree.cpp │ ├── kdtree │ │ ├── KdNode.cpp │ │ └── KdTree.cpp │ ├── quadtree │ │ ├── IntervalSize.cpp │ │ ├── Key.cpp │ │ ├── Node.cpp │ │ ├── NodeBase.cpp │ │ ├── Quadtree.cpp │ │ └── Root.cpp │ ├── strtree │ │ ├── AbstractSTRtree.cpp │ │ ├── BoundablePair.cpp │ │ ├── EnvelopeUtil.cpp │ │ ├── GeometryItemDistance.cpp │ │ ├── Interval.cpp │ │ ├── SIRtree.cpp │ │ ├── STRtree.cpp │ │ ├── SimpleSTRdistance.cpp │ │ ├── SimpleSTRnode.cpp │ │ └── SimpleSTRtree.cpp │ └── sweepline │ │ ├── SweepLineEvent.cpp │ │ ├── SweepLineIndex.cpp │ │ └── SweepLineInterval.cpp │ ├── io │ ├── ByteOrderDataInStream.cpp │ ├── ByteOrderValues.cpp │ ├── CLocalizer.cpp │ ├── GeoJSON.cpp │ ├── GeoJSONReader.cpp │ ├── GeoJSONWriter.cpp │ ├── ParseException.cpp │ ├── StringTokenizer.cpp │ ├── WKBReader.cpp │ ├── WKBStreamReader.cpp │ ├── WKBWriter.cpp │ ├── WKTFileReader.cpp │ ├── WKTReader.cpp │ ├── WKTStreamReader.cpp │ ├── WKTWriter.cpp │ └── Writer.cpp │ ├── linearref │ ├── ExtractLineByLocation.cpp │ ├── LengthIndexOfPoint.cpp │ ├── LengthIndexedLine.cpp │ ├── LengthLocationMap.cpp │ ├── LinearGeometryBuilder.cpp │ ├── LinearIterator.cpp │ ├── LinearLocation.cpp │ ├── LocationIndexOfLine.cpp │ └── LocationIndexOfPoint.cpp │ ├── math │ └── DD.cpp │ ├── noding │ ├── BasicSegmentString.cpp │ ├── BoundaryChainNoder.cpp │ ├── FastNodingValidator.cpp │ ├── FastSegmentSetIntersectionFinder.cpp │ ├── GeometryNoder.cpp │ ├── IntersectionAdder.cpp │ ├── IntersectionFinderAdder.cpp │ ├── IteratedNoder.cpp │ ├── MCIndexNoder.cpp │ ├── MCIndexSegmentSetMutualIntersector.cpp │ ├── NodedSegmentString.cpp │ ├── NodingIntersectionFinder.cpp │ ├── NodingValidator.cpp │ ├── Octant.cpp │ ├── OrientedCoordinateArray.cpp │ ├── ScaledNoder.cpp │ ├── SegmentExtractingNoder.cpp │ ├── SegmentIntersectionDetector.cpp │ ├── SegmentNode.cpp │ ├── SegmentNodeList.cpp │ ├── SegmentString.cpp │ ├── SegmentStringUtil.cpp │ ├── SimpleNoder.cpp │ ├── ValidatingNoder.cpp │ ├── snap │ │ ├── SnappingIntersectionAdder.cpp │ │ ├── SnappingNoder.cpp │ │ └── SnappingPointIndex.cpp │ └── snapround │ │ ├── HotPixel.cpp │ │ ├── HotPixelIndex.cpp │ │ ├── MCIndexPointSnapper.cpp │ │ ├── MCIndexSnapRounder.cpp │ │ ├── SnapRoundingIntersectionAdder.cpp │ │ └── SnapRoundingNoder.cpp │ ├── operation │ ├── BoundaryOp.cpp │ ├── GeometryGraphOperation.cpp │ ├── buffer │ │ ├── BufferBuilder.cpp │ │ ├── BufferCurveSetBuilder.cpp │ │ ├── BufferInputLineSimplifier.cpp │ │ ├── BufferNodeFactory.cpp │ │ ├── BufferOp.cpp │ │ ├── BufferParameters.cpp │ │ ├── BufferSubgraph.cpp │ │ ├── MaximalEdgeRing.cpp │ │ ├── MinimalEdgeRing.cpp │ │ ├── OffsetCurve.cpp │ │ ├── OffsetCurveBuilder.cpp │ │ ├── OffsetCurveSection.cpp │ │ ├── OffsetSegmentGenerator.cpp │ │ ├── PolygonBuilder.cpp │ │ ├── RightmostEdgeFinder.cpp │ │ ├── SegmentMCIndex.cpp │ │ └── SubgraphDepthLocater.cpp │ ├── cluster │ │ ├── AbstractClusterFinder.cpp │ │ ├── Clusters.cpp │ │ ├── DBSCANClusterFinder.cpp │ │ ├── GeometryFlattener.cpp │ │ └── UnionFind.cpp │ ├── distance │ │ ├── ConnectedElementLocationFilter.cpp │ │ ├── ConnectedElementPointFilter.cpp │ │ ├── DistanceOp.cpp │ │ ├── FacetSequence.cpp │ │ ├── FacetSequenceTreeBuilder.cpp │ │ ├── GeometryLocation.cpp │ │ └── IndexedFacetDistance.cpp │ ├── grid │ │ ├── Cell.cpp │ │ ├── FloodFill.cpp │ │ ├── Grid.cpp │ │ ├── GridIntersection.cpp │ │ ├── PerimeterDistance.cpp │ │ ├── Traversal.cpp │ │ └── TraversalAreas.cpp │ ├── intersection │ │ ├── Rectangle.cpp │ │ ├── RectangleIntersection.cpp │ │ └── RectangleIntersectionBuilder.cpp │ ├── linemerge │ │ ├── EdgeString.cpp │ │ ├── LineMergeDirectedEdge.cpp │ │ ├── LineMergeEdge.cpp │ │ ├── LineMergeGraph.cpp │ │ ├── LineMerger.cpp │ │ └── LineSequencer.cpp │ ├── overlay │ │ ├── snap │ │ │ ├── GeometrySnapper.cpp │ │ │ ├── LineStringSnapper.cpp │ │ │ └── SnapOverlayOp.cpp │ │ └── validate │ │ │ ├── FuzzyPointLocator.cpp │ │ │ ├── OffsetPointGenerator.cpp │ │ │ └── OverlayResultValidator.cpp │ ├── overlayng │ │ ├── CoverageUnion.cpp │ │ ├── Edge.cpp │ │ ├── EdgeKey.cpp │ │ ├── EdgeMerger.cpp │ │ ├── EdgeNodingBuilder.cpp │ │ ├── EdgeSourceInfo.cpp │ │ ├── ElevationModel.cpp │ │ ├── IndexedPointOnLineLocator.cpp │ │ ├── InputGeometry.cpp │ │ ├── IntersectionPointBuilder.cpp │ │ ├── LineBuilder.cpp │ │ ├── LineLimiter.cpp │ │ ├── MaximalEdgeRing.cpp │ │ ├── OverlayEdge.cpp │ │ ├── OverlayEdgeRing.cpp │ │ ├── OverlayGraph.cpp │ │ ├── OverlayLabel.cpp │ │ ├── OverlayLabeller.cpp │ │ ├── OverlayMixedPoints.cpp │ │ ├── OverlayNG.cpp │ │ ├── OverlayNGRobust.cpp │ │ ├── OverlayPoints.cpp │ │ ├── OverlayUtil.cpp │ │ ├── PolygonBuilder.cpp │ │ ├── PrecisionReducer.cpp │ │ ├── PrecisionUtil.cpp │ │ ├── RingClipper.cpp │ │ ├── RobustClipEnvelopeComputer.cpp │ │ └── UnaryUnionNG.cpp │ ├── polygonize │ │ ├── BuildArea.cpp │ │ ├── EdgeRing.cpp │ │ ├── HoleAssigner.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 │ ├── relateng │ │ ├── AdjacentEdgeLocator.cpp │ │ ├── BasicPredicate.cpp │ │ ├── DimensionLocation.cpp │ │ ├── EdgeSegmentIntersector.cpp │ │ ├── EdgeSegmentOverlapAction.cpp │ │ ├── EdgeSetIntersector.cpp │ │ ├── IMPatternMatcher.cpp │ │ ├── IMPredicate.cpp │ │ ├── LineStringExtracter.cpp │ │ ├── LinearBoundary.cpp │ │ ├── NodeSection.cpp │ │ ├── NodeSections.cpp │ │ ├── PolygonNodeConverter.cpp │ │ ├── RelateEdge.cpp │ │ ├── RelateGeometry.cpp │ │ ├── RelateNG.cpp │ │ ├── RelateNode.cpp │ │ ├── RelatePointLocator.cpp │ │ ├── RelatePredicate.cpp │ │ ├── RelateSegmentString.cpp │ │ └── TopologyComputer.cpp │ ├── sharedpaths │ │ └── SharedPathsOp.cpp │ ├── union │ │ ├── CascadedPolygonUnion.cpp │ │ ├── CoverageUnion.cpp │ │ ├── OverlapUnion.cpp │ │ ├── PointGeometryUnion.cpp │ │ ├── UnaryUnionOp.cpp │ │ └── UnionStrategy.cpp │ └── valid │ │ ├── IndexedNestedHoleTester.cpp │ │ ├── IndexedNestedPolygonTester.cpp │ │ ├── IsSimpleOp.cpp │ │ ├── IsValidOp.cpp │ │ ├── MakeValid.cpp │ │ ├── PolygonIntersectionAnalyzer.cpp │ │ ├── PolygonRing.cpp │ │ ├── PolygonRingSelfNode.cpp │ │ ├── PolygonRingTouch.cpp │ │ ├── PolygonTopologyAnalyzer.cpp │ │ ├── RepeatedPointRemover.cpp │ │ ├── RepeatedPointTester.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 │ ├── MinimumClearance.cpp │ ├── PointwisePrecisionReducerTransformer.cpp │ ├── PrecisionReducerTransformer.cpp │ └── SimpleGeometryPrecisionReducer.cpp │ ├── shape │ └── fractal │ │ ├── HilbertCode.cpp │ │ ├── HilbertEncoder.cpp │ │ └── MortonCode.cpp │ ├── simplify │ ├── ComponentJumpChecker.cpp │ ├── DouglasPeuckerLineSimplifier.cpp │ ├── DouglasPeuckerSimplifier.cpp │ ├── LineSegmentIndex.cpp │ ├── LinkedLine.cpp │ ├── LinkedRing.cpp │ ├── PolygonHullSimplifier.cpp │ ├── RingHull.cpp │ ├── RingHullIndex.cpp │ ├── TaggedLineSegment.cpp │ ├── TaggedLineString.cpp │ ├── TaggedLineStringSimplifier.cpp │ ├── TaggedLinesSimplifier.cpp │ └── TopologyPreservingSimplifier.cpp │ ├── triangulate │ ├── DelaunayTriangulationBuilder.cpp │ ├── IncrementalDelaunayTriangulator.cpp │ ├── VoronoiDiagramBuilder.cpp │ ├── polygon │ │ ├── ConstrainedDelaunayTriangulator.cpp │ │ ├── PolygonEarClipper.cpp │ │ ├── PolygonHoleJoiner.cpp │ │ ├── PolygonNoder.cpp │ │ ├── PolygonTriangulator.cpp │ │ └── TriDelaunayImprover.cpp │ ├── quadedge │ │ ├── LastFoundQuadEdgeLocator.cpp │ │ ├── LocateFailureException.cpp │ │ ├── QuadEdge.cpp │ │ ├── QuadEdgeSubdivision.cpp │ │ ├── TrianglePredicate.cpp │ │ └── Vertex.cpp │ └── tri │ │ ├── Tri.cpp │ │ ├── TriEdge.cpp │ │ └── TriangulationBuilder.cpp │ └── util │ ├── Assert.cpp │ ├── GeometricShapeFactory.cpp │ ├── Interrupt.cpp │ ├── Profiler.cpp │ ├── math.cpp │ └── string.cpp └── update.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/README.md -------------------------------------------------------------------------------- /Sources/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/COPYING -------------------------------------------------------------------------------- /Sources/geos/capi/geos_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/capi/geos_c.cpp -------------------------------------------------------------------------------- /Sources/geos/capi/geos_ts_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/capi/geos_ts_c.cpp -------------------------------------------------------------------------------- /Sources/geos/include/geos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Angle.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Area.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/BoundaryNodeRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/BoundaryNodeRule.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/CGAlgorithmsDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/CGAlgorithmsDD.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Centroid.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/CircularArcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/CircularArcs.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/ConvexHull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/ConvexHull.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Distance.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/HCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/HCoordinate.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/InteriorPointArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/InteriorPointArea.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/InteriorPointLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/InteriorPointLine.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/InteriorPointPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/InteriorPointPoint.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Interpolate.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Intersection.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Length.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/LineIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/LineIntersector.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/MinimumAreaRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/MinimumAreaRectangle.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/MinimumBoundingCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/MinimumBoundingCircle.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/MinimumDiameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/MinimumDiameter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Orientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Orientation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/PointInRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/PointInRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/PointLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/PointLocation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/PointLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/PointLocator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/PolygonNodeTopology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/PolygonNodeTopology.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/RayCrossingCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/RayCrossingCounter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/Rectangle.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/RobustDeterminant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/RobustDeterminant.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/distance/DistanceToPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/distance/DistanceToPoint.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/hull/ConcaveHull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/hull/ConcaveHull.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/hull/HullTri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/hull/HullTri.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/algorithm/hull/HullTriangulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/algorithm/hull/HullTriangulation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/constants.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CleanCoverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CleanCoverage.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/Corner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/Corner.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageCleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageCleaner.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageGapFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageGapFinder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoveragePolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoveragePolygon.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoveragePolygonValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoveragePolygonValidator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageRingEdges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageRingEdges.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageSimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageSimplifier.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageUnion.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/CoverageValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/CoverageValidator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/InvalidSegmentDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/InvalidSegmentDetector.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/TPVWSimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/TPVWSimplifier.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/coverage/VertexRingCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/coverage/VertexRingCounter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/dissolve/DissolveEdgeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/dissolve/DissolveEdgeGraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/dissolve/DissolveHalfEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/dissolve/DissolveHalfEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/dissolve/LineDissolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/dissolve/LineDissolver.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/edgegraph/EdgeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/edgegraph/EdgeGraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/edgegraph/EdgeGraphBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/edgegraph/EdgeGraphBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/edgegraph/HalfEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/edgegraph/HalfEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/edgegraph/MarkHalfEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/edgegraph/MarkHalfEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CircularArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CircularArc.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CircularString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CircularString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CompoundCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CompoundCurve.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Coordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Coordinate.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CoordinateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CoordinateFilter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CoordinateList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CoordinateList.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CoordinateSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CoordinateSequence.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CoordinateSequenceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CoordinateSequenceFilter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CoordinateSequenceIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CoordinateSequenceIterator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CoordinateSequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CoordinateSequences.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Curve.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/CurvePolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/CurvePolygon.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Dimension.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Envelope.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Geometry.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/GeometryCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/GeometryCollection.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/GeometryComponentFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/GeometryComponentFilter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/GeometryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/GeometryFactory.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/GeometryFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/GeometryFilter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/GeometryTypeName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/GeometryTypeName.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/HeuristicOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/HeuristicOverlay.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/IntersectionMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/IntersectionMatrix.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/LineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/LineSegment.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/LineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/LineString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/LinearRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/LinearRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Location.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/MultiCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/MultiCurve.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/MultiLineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/MultiLineString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/MultiPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/MultiPoint.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/MultiPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/MultiPolygon.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/MultiSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/MultiSurface.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Point.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Polygon.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Position.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/PrecisionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/PrecisionModel.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Quadrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Quadrant.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/SimpleCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/SimpleCurve.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Surface.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/SurfaceImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/SurfaceImpl.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/Triangle.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/BasicPreparedGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/BasicPreparedGeometry.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedGeometry.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedGeometryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedGeometryFactory.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedLineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedLineString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedPoint.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedPolygon.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedPolygonContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedPolygonContains.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedPolygonCovers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedPolygonCovers.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedPolygonDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedPolygonDistance.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/prep/PreparedPolygonPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/prep/PreparedPolygonPredicate.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/CoordinateOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/CoordinateOperation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/Densifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/Densifier.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryCombiner.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryEditor.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryEditorOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryEditorOperation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryExtracter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryFixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryFixer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryLister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryLister.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryMapper.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/GeometryTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/GeometryTransformer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/LinearComponentExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/LinearComponentExtracter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/NoOpGeometryOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/NoOpGeometryOperation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/PointExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/PointExtracter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/PolygonExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/PolygonExtracter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/PolygonalExtracter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/PolygonalExtracter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geom/util/SineStarFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geom/util/SineStarFactory.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/Depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/Depth.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/DirectedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/DirectedEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/DirectedEdgeStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/DirectedEdgeStar.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/Edge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/EdgeEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/EdgeEnd.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/EdgeEndStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/EdgeEndStar.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/EdgeIntersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/EdgeIntersection.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/EdgeIntersectionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/EdgeIntersectionList.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/EdgeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/EdgeList.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/EdgeNodingValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/EdgeNodingValidator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/EdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/EdgeRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/GeometryGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/GeometryGraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/GraphComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/GraphComponent.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/Label.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/Node.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/NodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/NodeFactory.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/NodeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/NodeMap.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/PlanarGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/PlanarGraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/TopologyLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/TopologyLocation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/index/EdgeSetIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/index/EdgeSetIntersector.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/index/MonotoneChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/index/MonotoneChain.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/index/MonotoneChainEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/index/MonotoneChainEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/index/SegmentIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/index/SegmentIntersector.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/index/SweepLineEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/index/SweepLineEvent.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/index/SweepLineEventObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/index/SweepLineEventObj.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/geomgraph/index/SweepLineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/geomgraph/index/SweepLineSegment.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/ItemVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/ItemVisitor.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/SpatialIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/SpatialIndex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/VertexSequencePackedRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/VertexSequencePackedRtree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/bintree/Bintree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/bintree/Bintree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/bintree/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/bintree/Interval.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/bintree/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/bintree/Key.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/bintree/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/bintree/Node.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/bintree/NodeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/bintree/NodeBase.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/bintree/Root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/bintree/Root.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/chain/MonotoneChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/chain/MonotoneChain.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/chain/MonotoneChainBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/chain/MonotoneChainBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/kdtree/KdNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/kdtree/KdNode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/kdtree/KdNodeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/kdtree/KdNodeVisitor.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/kdtree/KdTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/kdtree/KdTree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/quadtree/IntervalSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/quadtree/IntervalSize.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/quadtree/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/quadtree/Key.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/quadtree/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/quadtree/Node.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/quadtree/NodeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/quadtree/NodeBase.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/quadtree/Quadtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/quadtree/Quadtree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/quadtree/Root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/quadtree/Root.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/AbstractNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/AbstractNode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/AbstractSTRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/AbstractSTRtree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/Boundable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/Boundable.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/BoundablePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/BoundablePair.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/EnvelopeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/EnvelopeUtil.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/GeometryItemDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/GeometryItemDistance.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/Interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/Interval.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/ItemBoundable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/ItemBoundable.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/ItemDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/ItemDistance.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/SIRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/SIRtree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/STRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/STRtree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/SimpleSTRdistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/SimpleSTRdistance.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/SimpleSTRnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/SimpleSTRnode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/SimpleSTRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/SimpleSTRtree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/TemplateSTRNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/TemplateSTRNode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/TemplateSTRNodePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/TemplateSTRNodePair.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/strtree/TemplateSTRtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/strtree/TemplateSTRtree.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/sweepline/SweepLineEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/sweepline/SweepLineEvent.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/sweepline/SweepLineIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/sweepline/SweepLineIndex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/index/sweepline/SweepLineInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/index/sweepline/SweepLineInterval.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/ByteOrderDataInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/ByteOrderDataInStream.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/ByteOrderValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/ByteOrderValues.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/CLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/CLocalizer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/CheckOrdinatesFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/CheckOrdinatesFilter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/GeoJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/GeoJSON.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/GeoJSONReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/GeoJSONReader.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/GeoJSONWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/GeoJSONWriter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/OrdinateSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/OrdinateSet.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/ParseException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/ParseException.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/StringTokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/StringTokenizer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKBConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKBConstants.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKBReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKBReader.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKBStreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKBStreamReader.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKBWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKBWriter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKTFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKTFileReader.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKTReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKTReader.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKTStreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKTStreamReader.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/WKTWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/WKTWriter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/io/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/io/Writer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/ExtractLineByLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/ExtractLineByLocation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LengthIndexOfPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LengthIndexOfPoint.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LengthIndexedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LengthIndexedLine.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LengthLocationMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LengthLocationMap.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LinearGeometryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LinearGeometryBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LinearIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LinearIterator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LinearLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LinearLocation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LocationIndexOfLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LocationIndexOfLine.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LocationIndexOfPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LocationIndexOfPoint.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/linearref/LocationIndexedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/linearref/LocationIndexedLine.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/math/DD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/math/DD.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/namespaces.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/BasicSegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/BasicSegmentString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/BoundaryChainNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/BoundaryChainNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/FastNodingValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/FastNodingValidator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/GeometryNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/GeometryNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/IntersectionAdder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/IntersectionAdder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/IntersectionFinderAdder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/IntersectionFinderAdder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/IteratedNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/IteratedNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/MCIndexNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/MCIndexNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/NodableSegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/NodableSegmentString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/NodedSegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/NodedSegmentString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/Noder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/Noder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/NodingIntersectionFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/NodingIntersectionFinder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/NodingValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/NodingValidator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/Octant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/Octant.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/OrientedCoordinateArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/OrientedCoordinateArray.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/ScaledNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/ScaledNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentExtractingNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentExtractingNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentIntersectionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentIntersectionDetector.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentIntersector.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentNode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentNodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentNodeList.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentPointComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentPointComparator.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentSetMutualIntersector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentSetMutualIntersector.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SegmentStringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SegmentStringUtil.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SimpleNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SimpleNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/SinglePassNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/SinglePassNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/ValidatingNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/ValidatingNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/snap/SnappingNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/snap/SnappingNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/snap/SnappingPointIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/snap/SnappingPointIndex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/snapround/HotPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/snapround/HotPixel.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/snapround/HotPixelIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/snapround/HotPixelIndex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/noding/snapround/SnapRoundingNoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/noding/snapround/SnapRoundingNoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/BoundaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/BoundaryOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/GeometryGraphOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/GeometryGraphOperation.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/BufferBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/BufferBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/BufferNodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/BufferNodeFactory.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/BufferOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/BufferOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/BufferParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/BufferParameters.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/BufferSubgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/BufferSubgraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/MaximalEdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/MaximalEdgeRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/MinimalEdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/MinimalEdgeRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/OffsetCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/OffsetCurve.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/PolygonBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/PolygonBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/buffer/SegmentMCIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/buffer/SegmentMCIndex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/cluster/Clusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/cluster/Clusters.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/cluster/UnionFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/cluster/UnionFind.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/distance/DistanceOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/distance/DistanceOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/distance/FacetSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/distance/FacetSequence.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/Cell.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/Crossing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/Crossing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/FloodFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/FloodFill.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/Grid.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/GridIntersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/GridIntersection.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/Matrix.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/PerimeterDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/PerimeterDistance.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/Side.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/Side.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/Traversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/Traversal.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/grid/TraversalAreas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/grid/TraversalAreas.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/intersection/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/intersection/Rectangle.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/linemerge/EdgeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/linemerge/EdgeString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/linemerge/LineMergeEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/linemerge/LineMergeEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/linemerge/LineMergeGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/linemerge/LineMergeGraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/linemerge/LineMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/linemerge/LineMerger.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/linemerge/LineSequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/linemerge/LineSequencer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/CoverageUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/CoverageUnion.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/Edge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/EdgeKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/EdgeKey.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/EdgeMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/EdgeMerger.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/EdgeSourceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/EdgeSourceInfo.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/ElevationModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/ElevationModel.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/InputGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/InputGeometry.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/LineBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/LineBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/LineLimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/LineLimiter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/OverlayEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/OverlayEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/OverlayGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/OverlayGraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/OverlayLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/OverlayLabel.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/OverlayNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/OverlayNG.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/OverlayPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/OverlayPoints.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/OverlayUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/OverlayUtil.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/PolygonBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/PolygonBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/PrecisionUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/PrecisionUtil.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/RingClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/RingClipper.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/overlayng/UnaryUnionNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/overlayng/UnaryUnionNG.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/polygonize/BuildArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/polygonize/BuildArea.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/polygonize/EdgeRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/polygonize/EdgeRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/polygonize/HoleAssigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/polygonize/HoleAssigner.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/polygonize/Polygonizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/polygonize/Polygonizer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relate/EdgeEndBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relate/EdgeEndBuilder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relate/EdgeEndBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relate/EdgeEndBundle.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relate/EdgeEndBundleStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relate/EdgeEndBundleStar.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relate/RelateComputer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relate/RelateComputer.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relate/RelateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relate/RelateNode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relate/RelateNodeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relate/RelateNodeFactory.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relate/RelateOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relate/RelateOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relateng/IMPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relateng/IMPredicate.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relateng/NodeSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relateng/NodeSection.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relateng/NodeSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relateng/NodeSections.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relateng/RelateEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relateng/RelateEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relateng/RelateNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relateng/RelateNG.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/relateng/RelateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/relateng/RelateNode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/union/CoverageUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/union/CoverageUnion.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/union/OverlapUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/union/OverlapUnion.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/union/UnaryUnionOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/union/UnaryUnionOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/union/UnionStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/union/UnionStrategy.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/valid/IsSimpleOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/valid/IsSimpleOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/valid/IsValidOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/valid/IsValidOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/valid/MakeValid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/valid/MakeValid.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/operation/valid/PolygonRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/operation/valid/PolygonRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/DirectedEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/DirectedEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/DirectedEdgeStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/DirectedEdgeStar.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/Edge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/GraphComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/GraphComponent.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/Node.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/NodeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/NodeMap.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/PlanarGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/PlanarGraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/planargraph/Subgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/planargraph/Subgraph.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/precision/CommonBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/precision/CommonBits.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/precision/CommonBitsOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/precision/CommonBitsOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/precision/CommonBitsRemover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/precision/CommonBitsRemover.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/precision/EnhancedPrecisionOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/precision/EnhancedPrecisionOp.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/precision/MinimumClearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/precision/MinimumClearance.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/profiler.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/shape/fractal/HilbertCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/shape/fractal/HilbertCode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/shape/fractal/HilbertEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/shape/fractal/HilbertEncoder.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/shape/fractal/MortonCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/shape/fractal/MortonCode.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/ComponentJumpChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/ComponentJumpChecker.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/LineSegmentIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/LineSegmentIndex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/LinkedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/LinkedLine.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/LinkedRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/LinkedRing.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/PolygonHullSimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/PolygonHullSimplifier.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/RingHull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/RingHull.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/RingHullIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/RingHullIndex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/TaggedLineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/TaggedLineSegment.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/TaggedLineString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/TaggedLineString.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/simplify/TaggedLinesSimplifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/simplify/TaggedLinesSimplifier.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/triangulate/quadedge/QuadEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/triangulate/quadedge/QuadEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/triangulate/quadedge/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/triangulate/quadedge/Vertex.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/triangulate/tri/Tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/triangulate/tri/Tri.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/triangulate/tri/TriEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/triangulate/tri/TriEdge.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/triangulate/tri/TriList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/triangulate/tri/TriList.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/Assert.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/AssertionFailedException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/AssertionFailedException.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/CoordinateArrayFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/CoordinateArrayFilter.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/GEOSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/GEOSException.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/GeometricShapeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/GeometricShapeFactory.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/IllegalArgumentException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/IllegalArgumentException.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/IllegalStateException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/IllegalStateException.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/Interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/Interrupt.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/Machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/Machine.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/TopologyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/TopologyException.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/math.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/util/string.h -------------------------------------------------------------------------------- /Sources/geos/include/geos/vend/include_nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/vend/include_nlohmann_json.hpp -------------------------------------------------------------------------------- /Sources/geos/include/geos/vend/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/vend/json.hpp -------------------------------------------------------------------------------- /Sources/geos/include/geos/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/include/geos/version.h -------------------------------------------------------------------------------- /Sources/geos/public/geos/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/public/geos/export.h -------------------------------------------------------------------------------- /Sources/geos/public/geos_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/public/geos_c.h -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Angle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Area.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/BoundaryNodeRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/BoundaryNodeRule.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/CGAlgorithmsDD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/CGAlgorithmsDD.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Centroid.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/CircularArcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/CircularArcs.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/ConvexHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/ConvexHull.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Distance.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/HCoordinate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/HCoordinate.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/InteriorPointArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/InteriorPointArea.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/InteriorPointLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/InteriorPointLine.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/InteriorPointPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/InteriorPointPoint.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Intersection.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Length.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/LineIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/LineIntersector.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/MinimumAreaRectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/MinimumAreaRectangle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/MinimumBoundingCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/MinimumBoundingCircle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/MinimumDiameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/MinimumDiameter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/NotRepresentableException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/NotRepresentableException.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Orientation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Orientation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/PointLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/PointLocation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/PointLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/PointLocator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/PolygonNodeTopology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/PolygonNodeTopology.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/RayCrossingCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/RayCrossingCounter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/Rectangle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/RobustDeterminant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/RobustDeterminant.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/construct/LargestEmptyCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/construct/LargestEmptyCircle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/distance/DistanceToPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/distance/DistanceToPoint.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/hull/ConcaveHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/hull/ConcaveHull.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/hull/ConcaveHullOfPolygons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/hull/ConcaveHullOfPolygons.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/hull/HullTri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/hull/HullTri.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/hull/HullTriangulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/hull/HullTriangulation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/algorithm/hull/OuterShellsExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/algorithm/hull/OuterShellsExtracter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CleanCoverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CleanCoverage.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/Corner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/Corner.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageBoundarySegmentFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageBoundarySegmentFinder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageCleaner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageCleaner.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageGapFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageGapFinder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoveragePolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoveragePolygon.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoveragePolygonValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoveragePolygonValidator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageRingEdges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageRingEdges.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageUnion.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/CoverageValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/CoverageValidator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/InvalidSegmentDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/InvalidSegmentDetector.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/TPVWSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/TPVWSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/coverage/VertexRingCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/coverage/VertexRingCounter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/deps/ryu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/deps/ryu/common.h -------------------------------------------------------------------------------- /Sources/geos/src/deps/ryu/d2fixed_full_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/deps/ryu/d2fixed_full_table.h -------------------------------------------------------------------------------- /Sources/geos/src/deps/ryu/d2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/deps/ryu/d2s.c -------------------------------------------------------------------------------- /Sources/geos/src/deps/ryu/d2s_full_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/deps/ryu/d2s_full_table.h -------------------------------------------------------------------------------- /Sources/geos/src/deps/ryu/d2s_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/deps/ryu/d2s_intrinsics.h -------------------------------------------------------------------------------- /Sources/geos/src/deps/ryu/digit_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/deps/ryu/digit_table.h -------------------------------------------------------------------------------- /Sources/geos/src/deps/ryu/ryu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/deps/ryu/ryu.h -------------------------------------------------------------------------------- /Sources/geos/src/dissolve/DissolveEdgeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/dissolve/DissolveEdgeGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/dissolve/DissolveHalfEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/dissolve/DissolveHalfEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/dissolve/LineDissolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/dissolve/LineDissolver.cpp -------------------------------------------------------------------------------- /Sources/geos/src/edgegraph/EdgeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/edgegraph/EdgeGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/edgegraph/EdgeGraphBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/edgegraph/EdgeGraphBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/edgegraph/HalfEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/edgegraph/HalfEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/edgegraph/MarkHalfEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/edgegraph/MarkHalfEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/CircularString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/CircularString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/CompoundCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/CompoundCurve.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Coordinate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Coordinate.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/CoordinateSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/CoordinateSequence.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Curve.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/CurvePolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/CurvePolygon.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Dimension.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Envelope.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Geometry.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/GeometryCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/GeometryCollection.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/GeometryComponentFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/GeometryComponentFilter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/GeometryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/GeometryFactory.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/HeuristicOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/HeuristicOverlay.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/IntersectionMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/IntersectionMatrix.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/LineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/LineSegment.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/LineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/LineString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/LinearRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/LinearRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Location.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/MultiCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/MultiCurve.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/MultiLineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/MultiLineString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/MultiPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/MultiPoint.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/MultiPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/MultiPolygon.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/MultiSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/MultiSurface.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Point.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Polygon.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Position.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/PrecisionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/PrecisionModel.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Quadrant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Quadrant.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/SimpleCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/SimpleCurve.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Surface.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/Triangle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/BasicPreparedGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/BasicPreparedGeometry.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedGeometry.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedGeometryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedGeometryFactory.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedLineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedLineString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedLineStringDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedLineStringDistance.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedLineStringIntersects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedLineStringIntersects.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedPoint.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedPolygon.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedPolygonContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedPolygonContains.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedPolygonCovers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedPolygonCovers.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedPolygonDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedPolygonDistance.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedPolygonIntersects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedPolygonIntersects.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/prep/PreparedPolygonPredicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/prep/PreparedPolygonPredicate.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/ComponentCoordinateExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/ComponentCoordinateExtracter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/CoordinateOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/CoordinateOperation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/Densifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/Densifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/GeometryCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/GeometryCombiner.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/GeometryEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/GeometryEditor.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/GeometryFixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/GeometryFixer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/GeometryMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/GeometryMapper.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/GeometryTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/GeometryTransformer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/LinearComponentExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/LinearComponentExtracter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/NoOpGeometryOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/NoOpGeometryOperation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/PointExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/PointExtracter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/PolygonExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/PolygonExtracter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/PolygonalExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/PolygonalExtracter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geom/util/SineStarFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geom/util/SineStarFactory.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/Depth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/Depth.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/DirectedEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/DirectedEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/DirectedEdgeStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/DirectedEdgeStar.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/Edge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/EdgeEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/EdgeEnd.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/EdgeEndStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/EdgeEndStar.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/EdgeIntersectionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/EdgeIntersectionList.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/EdgeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/EdgeList.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/EdgeNodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/EdgeNodingValidator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/EdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/EdgeRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/GeometryGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/GeometryGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/GraphComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/GraphComponent.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/Label.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/Node.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/NodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/NodeFactory.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/NodeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/NodeMap.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/PlanarGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/PlanarGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/TopologyLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/TopologyLocation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/index/MonotoneChainEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/index/MonotoneChainEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/index/MonotoneChainIndexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/index/MonotoneChainIndexer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/index/SegmentIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/index/SegmentIntersector.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/index/SweepLineEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/index/SweepLineEvent.cpp -------------------------------------------------------------------------------- /Sources/geos/src/geomgraph/index/SweepLineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/geomgraph/index/SweepLineSegment.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/VertexSequencePackedRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/VertexSequencePackedRtree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/bintree/Bintree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/bintree/Bintree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/bintree/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/bintree/Interval.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/bintree/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/bintree/Key.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/bintree/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/bintree/Node.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/bintree/NodeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/bintree/NodeBase.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/bintree/Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/bintree/Root.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/chain/MonotoneChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/chain/MonotoneChain.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/chain/MonotoneChainBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/chain/MonotoneChainBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/chain/MonotoneChainOverlapAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/chain/MonotoneChainOverlapAction.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/chain/MonotoneChainSelectAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/chain/MonotoneChainSelectAction.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/kdtree/KdNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/kdtree/KdNode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/kdtree/KdTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/kdtree/KdTree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/quadtree/IntervalSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/quadtree/IntervalSize.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/quadtree/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/quadtree/Key.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/quadtree/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/quadtree/Node.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/quadtree/NodeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/quadtree/NodeBase.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/quadtree/Quadtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/quadtree/Quadtree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/quadtree/Root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/quadtree/Root.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/AbstractSTRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/AbstractSTRtree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/BoundablePair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/BoundablePair.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/EnvelopeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/EnvelopeUtil.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/GeometryItemDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/GeometryItemDistance.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/Interval.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/SIRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/SIRtree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/STRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/STRtree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/SimpleSTRdistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/SimpleSTRdistance.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/SimpleSTRnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/SimpleSTRnode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/strtree/SimpleSTRtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/strtree/SimpleSTRtree.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/sweepline/SweepLineEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/sweepline/SweepLineEvent.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/sweepline/SweepLineIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/sweepline/SweepLineIndex.cpp -------------------------------------------------------------------------------- /Sources/geos/src/index/sweepline/SweepLineInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/index/sweepline/SweepLineInterval.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/ByteOrderDataInStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/ByteOrderDataInStream.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/ByteOrderValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/ByteOrderValues.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/CLocalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/CLocalizer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/GeoJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/GeoJSON.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/GeoJSONReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/GeoJSONReader.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/GeoJSONWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/GeoJSONWriter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/ParseException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/ParseException.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/StringTokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/StringTokenizer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/WKBReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/WKBReader.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/WKBStreamReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/WKBStreamReader.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/WKBWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/WKBWriter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/WKTFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/WKTFileReader.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/WKTReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/WKTReader.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/WKTStreamReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/WKTStreamReader.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/WKTWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/WKTWriter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/io/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/io/Writer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/ExtractLineByLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/ExtractLineByLocation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LengthIndexOfPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LengthIndexOfPoint.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LengthIndexedLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LengthIndexedLine.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LengthLocationMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LengthLocationMap.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LinearGeometryBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LinearGeometryBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LinearIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LinearIterator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LinearLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LinearLocation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LocationIndexOfLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LocationIndexOfLine.cpp -------------------------------------------------------------------------------- /Sources/geos/src/linearref/LocationIndexOfPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/linearref/LocationIndexOfPoint.cpp -------------------------------------------------------------------------------- /Sources/geos/src/math/DD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/math/DD.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/BasicSegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/BasicSegmentString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/BoundaryChainNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/BoundaryChainNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/FastNodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/FastNodingValidator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/GeometryNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/GeometryNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/IntersectionAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/IntersectionAdder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/IntersectionFinderAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/IntersectionFinderAdder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/IteratedNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/IteratedNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/MCIndexNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/MCIndexNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/NodedSegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/NodedSegmentString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/NodingIntersectionFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/NodingIntersectionFinder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/NodingValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/NodingValidator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/Octant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/Octant.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/OrientedCoordinateArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/OrientedCoordinateArray.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/ScaledNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/ScaledNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/SegmentExtractingNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/SegmentExtractingNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/SegmentIntersectionDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/SegmentIntersectionDetector.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/SegmentNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/SegmentNode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/SegmentNodeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/SegmentNodeList.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/SegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/SegmentString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/SegmentStringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/SegmentStringUtil.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/SimpleNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/SimpleNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/ValidatingNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/ValidatingNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snap/SnappingIntersectionAdder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snap/SnappingIntersectionAdder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snap/SnappingNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snap/SnappingNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snap/SnappingPointIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snap/SnappingPointIndex.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snapround/HotPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snapround/HotPixel.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snapround/HotPixelIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snapround/HotPixelIndex.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snapround/MCIndexPointSnapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snapround/MCIndexPointSnapper.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snapround/MCIndexSnapRounder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snapround/MCIndexSnapRounder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/noding/snapround/SnapRoundingNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/noding/snapround/SnapRoundingNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/BoundaryOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/BoundaryOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/GeometryGraphOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/GeometryGraphOperation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/BufferBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/BufferBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/BufferCurveSetBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/BufferCurveSetBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/BufferNodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/BufferNodeFactory.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/BufferOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/BufferOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/BufferParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/BufferParameters.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/BufferSubgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/BufferSubgraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/MaximalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/MaximalEdgeRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/MinimalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/MinimalEdgeRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/OffsetCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/OffsetCurve.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/OffsetCurveBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/OffsetCurveBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/OffsetCurveSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/OffsetCurveSection.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/PolygonBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/PolygonBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/RightmostEdgeFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/RightmostEdgeFinder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/SegmentMCIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/SegmentMCIndex.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/buffer/SubgraphDepthLocater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/buffer/SubgraphDepthLocater.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/cluster/Clusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/cluster/Clusters.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/cluster/DBSCANClusterFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/cluster/DBSCANClusterFinder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/cluster/GeometryFlattener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/cluster/GeometryFlattener.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/cluster/UnionFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/cluster/UnionFind.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/distance/DistanceOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/distance/DistanceOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/distance/FacetSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/distance/FacetSequence.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/distance/GeometryLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/distance/GeometryLocation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/grid/Cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/grid/Cell.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/grid/FloodFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/grid/FloodFill.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/grid/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/grid/Grid.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/grid/GridIntersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/grid/GridIntersection.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/grid/PerimeterDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/grid/PerimeterDistance.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/grid/Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/grid/Traversal.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/grid/TraversalAreas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/grid/TraversalAreas.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/intersection/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/intersection/Rectangle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/linemerge/EdgeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/linemerge/EdgeString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/linemerge/LineMergeEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/linemerge/LineMergeEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/linemerge/LineMergeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/linemerge/LineMergeGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/linemerge/LineMerger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/linemerge/LineMerger.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/linemerge/LineSequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/linemerge/LineSequencer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlay/snap/GeometrySnapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlay/snap/GeometrySnapper.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlay/snap/SnapOverlayOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlay/snap/SnapOverlayOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/CoverageUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/CoverageUnion.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/Edge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/EdgeKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/EdgeKey.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/EdgeMerger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/EdgeMerger.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/EdgeNodingBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/EdgeNodingBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/EdgeSourceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/EdgeSourceInfo.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/ElevationModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/ElevationModel.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/InputGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/InputGeometry.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/LineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/LineBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/LineLimiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/LineLimiter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/MaximalEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/MaximalEdgeRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayEdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayEdgeRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayLabel.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayLabeller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayLabeller.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayMixedPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayMixedPoints.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayNG.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayNGRobust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayNGRobust.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayPoints.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/OverlayUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/OverlayUtil.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/PolygonBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/PolygonBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/PrecisionReducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/PrecisionReducer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/PrecisionUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/PrecisionUtil.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/RingClipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/RingClipper.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/overlayng/UnaryUnionNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/overlayng/UnaryUnionNG.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/polygonize/BuildArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/polygonize/BuildArea.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/polygonize/EdgeRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/polygonize/EdgeRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/polygonize/HoleAssigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/polygonize/HoleAssigner.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/polygonize/PolygonizeEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/polygonize/PolygonizeEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/polygonize/PolygonizeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/polygonize/PolygonizeGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/polygonize/Polygonizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/polygonize/Polygonizer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/predicate/RectangleContains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/predicate/RectangleContains.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/EdgeEndBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/EdgeEndBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/EdgeEndBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/EdgeEndBundle.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/EdgeEndBundleStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/EdgeEndBundleStar.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/RelateComputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/RelateComputer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/RelateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/RelateNode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/RelateNodeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/RelateNodeFactory.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/RelateNodeGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/RelateNodeGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relate/RelateOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relate/RelateOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/AdjacentEdgeLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/AdjacentEdgeLocator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/BasicPredicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/BasicPredicate.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/DimensionLocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/DimensionLocation.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/EdgeSetIntersector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/EdgeSetIntersector.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/IMPatternMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/IMPatternMatcher.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/IMPredicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/IMPredicate.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/LineStringExtracter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/LineStringExtracter.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/LinearBoundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/LinearBoundary.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/NodeSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/NodeSection.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/NodeSections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/NodeSections.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/RelateEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/RelateEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/RelateGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/RelateGeometry.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/RelateNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/RelateNG.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/RelateNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/RelateNode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/RelatePointLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/RelatePointLocator.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/RelatePredicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/RelatePredicate.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/RelateSegmentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/RelateSegmentString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/relateng/TopologyComputer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/relateng/TopologyComputer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/sharedpaths/SharedPathsOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/sharedpaths/SharedPathsOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/union/CascadedPolygonUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/union/CascadedPolygonUnion.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/union/CoverageUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/union/CoverageUnion.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/union/OverlapUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/union/OverlapUnion.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/union/PointGeometryUnion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/union/PointGeometryUnion.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/union/UnaryUnionOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/union/UnaryUnionOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/union/UnionStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/union/UnionStrategy.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/IsSimpleOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/IsSimpleOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/IsValidOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/IsValidOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/MakeValid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/MakeValid.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/PolygonRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/PolygonRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/PolygonRingSelfNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/PolygonRingSelfNode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/PolygonRingTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/PolygonRingTouch.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/RepeatedPointRemover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/RepeatedPointRemover.cpp -------------------------------------------------------------------------------- /Sources/geos/src/operation/valid/RepeatedPointTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/operation/valid/RepeatedPointTester.cpp -------------------------------------------------------------------------------- /Sources/geos/src/planargraph/DirectedEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/planargraph/DirectedEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/planargraph/DirectedEdgeStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/planargraph/DirectedEdgeStar.cpp -------------------------------------------------------------------------------- /Sources/geos/src/planargraph/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/planargraph/Edge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/planargraph/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/planargraph/Node.cpp -------------------------------------------------------------------------------- /Sources/geos/src/planargraph/NodeMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/planargraph/NodeMap.cpp -------------------------------------------------------------------------------- /Sources/geos/src/planargraph/PlanarGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/planargraph/PlanarGraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/planargraph/Subgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/planargraph/Subgraph.cpp -------------------------------------------------------------------------------- /Sources/geos/src/precision/CommonBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/precision/CommonBits.cpp -------------------------------------------------------------------------------- /Sources/geos/src/precision/CommonBitsOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/precision/CommonBitsOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/precision/CommonBitsRemover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/precision/CommonBitsRemover.cpp -------------------------------------------------------------------------------- /Sources/geos/src/precision/EnhancedPrecisionOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/precision/EnhancedPrecisionOp.cpp -------------------------------------------------------------------------------- /Sources/geos/src/precision/GeometryPrecisionReducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/precision/GeometryPrecisionReducer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/precision/MinimumClearance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/precision/MinimumClearance.cpp -------------------------------------------------------------------------------- /Sources/geos/src/precision/PrecisionReducerTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/precision/PrecisionReducerTransformer.cpp -------------------------------------------------------------------------------- /Sources/geos/src/shape/fractal/HilbertCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/shape/fractal/HilbertCode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/shape/fractal/HilbertEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/shape/fractal/HilbertEncoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/shape/fractal/MortonCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/shape/fractal/MortonCode.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/ComponentJumpChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/ComponentJumpChecker.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/DouglasPeuckerLineSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/DouglasPeuckerLineSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/DouglasPeuckerSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/DouglasPeuckerSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/LineSegmentIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/LineSegmentIndex.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/LinkedLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/LinkedLine.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/LinkedRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/LinkedRing.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/PolygonHullSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/PolygonHullSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/RingHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/RingHull.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/RingHullIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/RingHullIndex.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/TaggedLineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/TaggedLineSegment.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/TaggedLineString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/TaggedLineString.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/TaggedLineStringSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/TaggedLineStringSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/TaggedLinesSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/TaggedLinesSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/simplify/TopologyPreservingSimplifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/simplify/TopologyPreservingSimplifier.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/VoronoiDiagramBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/VoronoiDiagramBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/polygon/PolygonEarClipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/polygon/PolygonEarClipper.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/polygon/PolygonHoleJoiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/polygon/PolygonHoleJoiner.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/polygon/PolygonNoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/polygon/PolygonNoder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/quadedge/QuadEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/quadedge/QuadEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/quadedge/TrianglePredicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/quadedge/TrianglePredicate.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/quadedge/Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/quadedge/Vertex.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/tri/Tri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/tri/Tri.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/tri/TriEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/tri/TriEdge.cpp -------------------------------------------------------------------------------- /Sources/geos/src/triangulate/tri/TriangulationBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/triangulate/tri/TriangulationBuilder.cpp -------------------------------------------------------------------------------- /Sources/geos/src/util/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/util/Assert.cpp -------------------------------------------------------------------------------- /Sources/geos/src/util/GeometricShapeFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/util/GeometricShapeFactory.cpp -------------------------------------------------------------------------------- /Sources/geos/src/util/Interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/util/Interrupt.cpp -------------------------------------------------------------------------------- /Sources/geos/src/util/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/util/Profiler.cpp -------------------------------------------------------------------------------- /Sources/geos/src/util/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/util/math.cpp -------------------------------------------------------------------------------- /Sources/geos/src/util/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/Sources/geos/src/util/string.cpp -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GEOSwift/geos/HEAD/update.sh --------------------------------------------------------------------------------