GR: remove obsolete method

This commit is contained in:
t-bltg 2021-07-31 20:31:58 +02:00 committed by GitHub
parent 2938950bda
commit 5bc96cfe68
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)