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
with_theme(
Theme(
palette = (color = [:red, :blue], marker = [:circle, :xcross]),
Scatter = (
cycle = [:color, :marker],)
)) do
fig =Figure()
ax1 =Axis3(fig[1,1])
scatter!(ax1,[Point3f(1,i,0) for i =1:10])
scatter!(ax1,[Point3f(2,i,0) for i =1:10])
scatter!(ax1,[Point3f(3,i,0) for i =1:10])
scatter!(ax1,[Point3f(4,i,0) for i =1:10])
scatter!(ax1,[Point3f(5,i,0) for i =1:10])
ax2 =LScene(fig[1,2])
scatter!(ax2,[Point3f(1,i,0) for i =1:10])
scatter!(ax2,[Point3f(2,i,0) for i =1:10])
scatter!(ax2,[Point3f(3,i,0) for i =1:10])
scatter!(ax2,[Point3f(4,i,0) for i =1:10])
scatter!(ax2,[Point3f(5,i,0) for i =1:10])
ax3 =Axis(fig[1,3])
scatter!(ax3,[Point3f(1,i,0) for i =1:10])
scatter!(ax3,[Point3f(2,i,0) for i =1:10])
scatter!(ax3,[Point3f(3,i,0) for i =1:10])
scatter!(ax3,[Point3f(4,i,0) for i =1:10])
scatter!(ax3,[Point3f(5,i,0) for i =1:10])
current_figure()
end
gives
Neither Axis3 nor LScene cycles the color and marker correctly as the Axis does.
The text was updated successfully, but these errors were encountered:
]activate --temp; add Makie
)Modifing the 2D example from the docs
gives
Neither
Axis3
norLScene
cycles the color and marker correctly as theAxis
does.The text was updated successfully, but these errors were encountered: