Is there an example for how to use the seriestype=:volume recipe?
Found the recipe listed in the documentation here, but I am clearly using it incorrectly: Overview · Plots
I am attempting to render a 3d rectangular box by plotting the eight vertices using the code below, but this generates errors.
using Plots
x = [0,0,0,0,1,1,1,1]
y = [0,0,1,1,0,0,1,1]
z = [0,1,0,1,0,1,0,1]
plot(x, y, z, seriestype=:volume)
Using plot(x,y,z) without the volume recipe correctly plots lines connecting each vertex.
I would also like to learn how to use the seriestype=:surface recipe.