Matplotlib`fill_between`填充菱形

时间:2019-02-14 15:34:03

标签: python matplotlib

我目前正在尝试使用matplotlib.pyplot.fill_between()方法在长菱形的区域着色。

我目前两次使用fill_between(),但我想知道是否有一种方法可以仅使用一次方法来填充形状。请允许我详细说明。

为了获得以下图像:

enter image description here

我编写的代码如下:

import matplotlib.pyplot as plt

# Fill in area.
plt.fill_between([0, 1, 4], [0, 1, 4], [0, 3, 4], color='C2', label=r'$c\vec{v} + d\vec{w}$')
plt.fill_between([0, 3, 4], [0, 3, 4], [0, 1, 4], color='C2')

# v
plt.quiver(0, 0, 3, 1, color='C0', angles='xy', scale_units='xy', scale=1, label=r'$\vec{v}$')

# w
plt.quiver(0, 0, 1, 3, color='C1', angles='xy', scale_units='xy', scale=1, label=r'$\vec{w}$')

# Miscellaneous.
plt.xlim(-1, 6)
plt.ylim(-1, 6)
plt.axhline(0, color='black')
plt.axvline(0, color='black')
plt.xlabel(r'$x$', fontsize='large')
plt.ylabel(r'$y$', fontsize='large')
plt.grid()
plt.legend()
plt.show()

是否可以使用一次fill_between()方法来填充形状?

谢谢。

1 个答案:

答案 0 :(得分:4)

既然要绘制多边形,请考虑绘制Polygon

import numpy as np
import matplotlib.pyplot as plt

# v
plt.quiver(0, 0, 3, 1, color='C0', angles='xy', scale_units='xy', scale=1, label=r'$\vec{v}$')
# w
plt.quiver(0, 0, 1, 3, color='C1', angles='xy', scale_units='xy', scale=1, label=r'$\vec{w}$')

verts = [0,3,4,1,0]
poly = plt.Polygon(np.c_[verts,verts[::-1]], color="C2", zorder=0,
                   label=r'$c\vec{v} + d\vec{w}$')
plt.gca().add_patch(poly)


# Miscellaneous.
plt.autoscale()
plt.margins(.2)
plt.grid()
plt.legend(loc="upper left")
plt.show()

enter image description here