本文整理汇总了Python中scipy.spatial.Delaunay.set_edgecolor方法的典型用法代码示例。如果您正苦于以下问题:Python Delaunay.set_edgecolor方法的具体用法?Python Delaunay.set_edgecolor怎么用?Python Delaunay.set_edgecolor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scipy.spatial.Delaunay
的用法示例。
在下文中一共展示了Delaunay.set_edgecolor方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: from scipy.spatial import Delaunay [as 别名]
# 或者: from scipy.spatial.Delaunay import set_edgecolor [as 别名]
# if np.amin(aspectRatio) > 0:
# aspect = 1
ax = a3.Axes3D(pl.figure())
facetCol = sp.rand(3) #[0.0, 1.0, 0.0]
# Plot hull's vertices
for vert in hull.vertices:
ax.scatter(pointsz[vert,0], pointsz[vert,1], zs=pointsz[vert,2])
# Plot surface traingulation
for simplex in hull.simplices:
vtx = [pointsz[simplex[0],:], pointsz[simplex[1],:], pointsz[simplex[2],:]]
tri = a3.art3d.Poly3DCollection([vtx], linewidths = 2, alpha = 0.8)
tri.set_color(facetCol)
tri.set_edgecolor('k')
ax.add_collection3d(tri)
ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')
#plt.axis('off')
##################
from scipy.spatial.distance import euclidean
import matplotlib.pyplot as plt
import mpl_toolkits.mplot3d as a3
import pylab as pl
import scipy as sp