From 082b7999832f5625ae981a92d5f7fce65470462d Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Thu, 16 May 2024 07:50:08 +0530 Subject: [PATCH] Actually remove piracy (#227) * Actually remove piracy * Update Project.toml --- Project.toml | 2 +- src/utils.jl | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 939346c9..5ded96d0 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "GeoMakie" uuid = "db073c08-6b98-4ee5-b6a4-5efafb3259c6" authors = ["Makie.jl Contributors"] -version = "0.6.3" +version = "0.6.4" [deps] Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" diff --git a/src/utils.jl b/src/utils.jl index 3003c47d..d5ec3aa7 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -124,8 +124,6 @@ function Makie.apply_transform(t::Makie.PointTrans{2, Base.Fix1{typeof(GeoMakie. tr2 = Makie.apply_transform(t, r2) return Rect3{T}((tr2.origin..., r.origin[3]), (tr2.widths..., r.widths[3])) end - -Base.isfinite(x::Union{GeometryBasics.AbstractPoint, GeometryBasics.Vec}) = all(isfinite, x) # Some minor type piracy function (transformation::Proj.Transformation)(coord::Point{N, T}) where {N, T <: Real}