Color a polygon

Hi,

I have a flat polygon in 3d and I would like to color it. So far, I could not do it. Please note that I do not want to decompose it with triangles.

Thank you for your help,

Best regards

using Plots
t=linspace(0,2pi,10)
    plot(cos(t),sin(t),zeros(length(t)),color=:red)

For reference, there is one Plots.jl solution in this thread.

Thank you!
I have forgotten why I needed this…

1 Like