贝塞尔曲线#

此示例展示了 PathPatch 对象,用于创建贝塞尔多段线路径补丁.

import matplotlib.pyplot as plt

import matplotlib.patches as mpatches
import matplotlib.path as mpath

Path = mpath.Path

fig, ax = plt.subplots()
pp1 = mpatches.PathPatch(
    Path([(0, 0), (1, 0), (1, 1), (0, 0)],
         [Path.MOVETO, Path.CURVE3, Path.CURVE3, Path.CLOSEPOLY]),
    fc="none", transform=ax.transData)

ax.add_patch(pp1)
ax.plot([0.75], [0.25], "ro")
ax.set_title('The red point should be on the path')

plt.show()
The red point should be on the path

参考

以下函数,方法,类和模块的用法在本例中显示:

  • matplotlib.path

  • matplotlib.path.Path

  • matplotlib.patches

  • matplotlib.patches.PathPatch

  • matplotlib.axes.Axes.add_patch

Gallery generated by Sphinx-Gallery