diff --git a/docs/src/api.md b/docs/src/api.md index 57560467b..01af94643 100644 --- a/docs/src/api.md +++ b/docs/src/api.md @@ -27,7 +27,7 @@ GeometryOps.contains coveredby covers crosses -disjiont +disjoint intersects overlaps touches diff --git a/src/methods/barycentric.jl b/src/methods/barycentric.jl index b4a528a44..be0f11369 100644 --- a/src/methods/barycentric.jl +++ b/src/methods/barycentric.jl @@ -55,7 +55,7 @@ f, a1, p1 = poly( polygon_points; color = last.(polygon_points), colormap = cgrad(:jet, 18; categorical = true), axis = (; - aspect = DataAspect(), title = "Makie mesh based polygon rendering", subtitle = "CairoMakie" + axistype = Axis, aspect = DataAspect(), title = "Makie mesh based polygon rendering", subtitle = "CairoMakie" ), figure = (; resolution = (800, 400),) ) diff --git a/src/methods/clipping/clipping_processor.jl b/src/methods/clipping/clipping_processor.jl index 3e787880e..61c494346 100644 --- a/src/methods/clipping/clipping_processor.jl +++ b/src/methods/clipping/clipping_processor.jl @@ -1,4 +1,5 @@ -# # This file contains the shared helper functions forlyNode the polygon clipping functionalities. +# # Polygon clipping helpers +# This file contains the shared helper functions for the polygon clipping functionalities. #= This is the struct that makes up a_list and b_list. Many values are only used if point is an intersection point (ipt). =# diff --git a/src/methods/geom_relations/geom_geom_processors.jl b/src/methods/geom_relations/geom_geom_processors.jl index 75e98a73f..61f71b3f6 100644 --- a/src/methods/geom_relations/geom_geom_processors.jl +++ b/src/methods/geom_relations/geom_geom_processors.jl @@ -1,3 +1,5 @@ +# # Line-curve interaction + #= Code is based off of DE-9IM Standards (https://en.wikipedia.org/wiki/DE-9IM) and attempts a standardized solution for most of the functions. =# diff --git a/src/methods/polygonize.jl b/src/methods/polygonize.jl index a8a78208a..c78eae881 100644 --- a/src/methods/polygonize.jl +++ b/src/methods/polygonize.jl @@ -11,7 +11,7 @@ export polygonize # ## Example -# Here's a basic implementation, using the `Makie.peaks()` function. First, let's investigate the nature of the function: +# Here's a basic example, using the `Makie.peaks()` function. First, let's investigate the nature of the function: # ```@example polygonize # using Makie, GeometryOps # n = 49 diff --git a/src/primitives.jl b/src/primitives.jl index 4755db935..8481c81f2 100644 --- a/src/primitives.jl +++ b/src/primitives.jl @@ -82,7 +82,7 @@ $APPLY_KEYWORDS Flipped point the order in any feature or geometry, or iterables of either: -```juia +```julia import GeoInterface as GI import GeometryOps as GO geom = GI.Polygon([GI.LinearRing([(1, 2), (3, 4), (5, 6), (1, 2)]), diff --git a/src/transformations/extent.jl b/src/transformations/extent.jl index 9055de135..90629af29 100644 --- a/src/transformations/extent.jl +++ b/src/transformations/extent.jl @@ -1,3 +1,5 @@ +# # Extent embedding + """ embed_extent(obj)