I plot a figure like:
How to disable the reverse lighting at those points?
The picture is generated by codes like:
second(x) = x[2]
fig = Figure()
axes = LScene(fig[1, 1])
for i in eachindex(points)
scatter!(axes, first.(points), second.(points), last.(points))
end
fig