颜色matplotlib补丁与2种颜色或渐变

时间:2017-02-09 15:51:23

标签: python matplotlib colors

我需要用两种不同的颜色着色椭圆。这可以做半个或一半或更好,一个水平梯度。

我想继续使用matplotlib补丁而不是使用方程来绘制椭圆。

我正在使用这个最小的代码来指出问题。

import matplotlib.pyplot as plt
import matplotlib.patches as mpatch

ax = plt.subplot(111)
ax.add_patch(mpatch.Ellipse(xy = [0.5, 0.5], width= 0.75, height=0.5, facecolor = 'blue'))
plt.show()

指向How to draw a filled arc in matplotlib的Anserws被指示填充一个圆弧,除了可以填充椭圆弧的圆弧。

这是我需要的动画片

enter image description here

1 个答案:

答案 0 :(得分:-1)

补丁弧可以绘制半椭圆,但默认情况下无法填充。

我找到了如何填充和弧形: How to draw a filled arc in matplotlib

import matplotlib.pyplot as plt
import matplotlib.patches as mpatch

ax = plt.subplot(111)
ax.add_patch(mpatch.Arc(xy = [0.5, 0.5], width= 0.75, height=0.5, angle=.0, theta1= 90.0, theta2=-90.0, color = 'blue', hatch = 'OOOO'))
ax.add_patch(mpatch.Arc(xy = [0.5, 0.5], width= 0.75, height=0.5, angle=.0, theta1=-90.0, theta2= 90.0, color = 'green', hatch = 'OOOO'))

enter image description here