I'm following this tutorial by Matplotlib about patches. I understand how it works, but the only thing i don't understand is how can i set color to the patches. Say i want all of them to be orange, i tried this (from the code):
for x1, y1, r, t1, t2 in zip(x, y, radii, theta1, theta2):
wedge = Wedge((x1, y1), r, t1, t2, color='orange')
patches.append(wedge)
But it didn't set the color to the patches. How can i do that?