I was plotting some curves with a lot of low level noise with
GLMakie and the plots had a lot of extra line cruft as if the
line segments for the lines in the plot were not being correctly
handled.
A MWE for the above example is
using GLMakie;
data = [1 + 2*rand() + i/100 for i in 1:10000];
lines(data)
This should show a line of slope 1/100 with random noise as
a thickening strip of size 2 superimposed.
This is much less than the figure dimensions so the plot
should resemble a thick line. I find that if I zoom in enough that
some/most of the spilling line ends clean up.
Can anyone else reproduce the problem?