Merge pull request #3735 from JuliaPlots/t-bltg-patch-1

GR: remove obsolete method
This commit is contained in:
t-bltg 2021-07-31 21:13:59 +02:00 committed by GitHub
commit 80748eb5e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -400,14 +400,6 @@ function gr_set_font(f::Font, s; halign = f.halign, valign = f.valign,
GR.settextalign(gr_halign(halign), gr_valign(valign))
end
function gr_nans_to_infs!(z)
for (i,zi) in enumerate(z)
if isnan(zi)
z[i] = Inf
end
end
end
function gr_w3tondc(x, y, z)
xw, yw, zw = GR.wc3towc(x, y, z)
x, y = GR.wctondc(xw, yw)