Mathplotlib绘制具有渐变填充的三角形

时间:2017-02-06 08:43:28

标签: python matplotlib polygon

我必须使用mathplotlib在Python中绘制一个三角形 This最终应该是这样的:

我的目标是,一旦绘制三角形,就可以在其上绘制一些点。

目前我可以画三角形:

import matplotlib.pyplot as plt 
from matplotlib.patches import Polygon 
fig = plt.figure() 
ax = fig.add_subplot(111, aspect='equal') 
ax.add_patch(Polygon([[0,0],[0,1],[1,0]], closed=True,fill=True)) 
ax.set_xlim((0,1)) 
ax.set_ylim((0,1)) 
plt.show()

但我只能用纯色填充它。如何添加如图所示的渐变?

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:2)

有一个example on the matplotlib page显示如何使用图像的剪辑路径 根据你的情况进行调整就可以了:

import matplotlib.pyplot as plt 
import numpy as np
from matplotlib.path import Path
from matplotlib.patches import PathPatch


fig = plt.figure() 
ax = fig.add_subplot(111, aspect='equal') 
path = Path([[0,0],[0,1],[1,0],[0,0]])
patch = PathPatch(path, facecolor='none')
ax.add_patch(patch) 
Z, Z2 = np.meshgrid(np.linspace(0,1), np.linspace(0,1))
im = plt.imshow(Z-Z2, interpolation='bilinear', cmap=plt.cm.RdYlGn,
                origin='lower', extent=[0, 1, 0, 1],
                clip_path=patch, clip_on=True)
im.set_clip_path(patch)
ax.set_xlim((0,1)) 
ax.set_ylim((0,1)) 
plt.show()

enter image description here