Is there an option to hide the white stroke around the dots in 3D? When the cloud of points is very dense these strokes end up hiding the actual colors of the dots.
I tried playing with strokewidth, strokecolor, glowwidth, glowcolor, … but none of these options change the plot in 3D.
They are not strokes, they are rendering artifacts of the antialiasing. When a dot in front gets a half-transparent edge mixed with white background then it can block dots from behind that are rendered later from showing through. I’ve always wondered if that can be avoided, maybe @sdanisch or @ffreyer know
You can trade this problem for incorrect render order with overdraw = true or for some amount of transparency with transparency = true.
We could look into drawing markers without anti-aliasing and use fxaa to approximate it later. This might be pretty bad if things get small though, i.e. with text, thin stroke, thin linewidths (lines has the same problem) or very small markers. So it would need to be an adjustable option.