You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing for MakieOrg/Makie.jl#3681 I noticed that tick finding has problems with small numbers, starting around PlotUtils.optimize_ticks(1e-17, 10e-17). It would be nice if we could push this a bit further.
For large values even PlotUtils.optimize_ticks(1e200, 10e200) still works.
The text was updated successfully, but these errors were encountered:
I think an easy workaround would be to scale the inputs and then scale back after.
Or pass a bigger number type. Though I'm not sure that function is written generic enough for that.
I don't see how we could alter the function to work with values below machine epsilon for Float64 input TBH.
While testing for MakieOrg/Makie.jl#3681 I noticed that tick finding has problems with small numbers, starting around
PlotUtils.optimize_ticks(1e-17, 10e-17)
. It would be nice if we could push this a bit further.For large values even
PlotUtils.optimize_ticks(1e200, 10e200)
still works.The text was updated successfully, but these errors were encountered: