Skip to content

Commit

Permalink
Minor typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 committed Feb 3, 2024
1 parent 119e0cf commit f6ab79c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ GeometryOps.contains
coveredby
covers
crosses
disjiont
disjoint
intersects
overlaps
touches
Expand Down
2 changes: 1 addition & 1 deletion src/methods/barycentric.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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),)
)
Expand Down
3 changes: 2 additions & 1 deletion src/methods/clipping/clipping_processor.jl
Original file line number Diff line number Diff line change
@@ -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). =#
Expand Down
2 changes: 2 additions & 0 deletions src/methods/geom_relations/geom_geom_processors.jl
Original file line number Diff line number Diff line change
@@ -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.
=#
Expand Down
2 changes: 1 addition & 1 deletion src/methods/polygonize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/primitives.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)]),
Expand Down
2 changes: 2 additions & 0 deletions src/transformations/extent.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# # Extent embedding

"""
embed_extent(obj)
Expand Down

0 comments on commit f6ab79c

Please sign in to comment.