scipy.spatial.
delaunay_plot_2d#
- scipy.spatial.delaunay_plot_2d(tri, ax=None)[源代码][源代码]#
在二维空间中绘制给定的Delaunay三角剖分
- 参数:
- 三scipy.spatial.Delaunay 实例
三角测量绘图
- axmatplotlib.axes.Axes 实例,可选
要绘制的轴
- 返回:
- 图matplotlib.figure.Figure 实例
图表用于绘图
注释
需要 Matplotlib。
示例
>>> import numpy as np >>> import matplotlib.pyplot as plt >>> from scipy.spatial import Delaunay, delaunay_plot_2d
一组随机点的 Delaunay 三角剖分:
>>> rng = np.random.default_rng() >>> points = rng.random((30, 2)) >>> tri = Delaunay(points)
绘制它:
>>> _ = delaunay_plot_2d(tri) >>> plt.show()