当前位置: 首页>>代码示例>>Python>>正文


Python Delaunay.set_color方法代码示例

本文整理汇总了Python中scipy.spatial.Delaunay.set_color方法的典型用法代码示例。如果您正苦于以下问题:Python Delaunay.set_color方法的具体用法?Python Delaunay.set_color怎么用?Python Delaunay.set_color使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在scipy.spatial.Delaunay的用法示例。


在下文中一共展示了Delaunay.set_color方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1:

# 需要导入模块: from scipy.spatial import Delaunay [as 别名]
# 或者: from scipy.spatial.Delaunay import set_color [as 别名]
    # print np.amin(aspectRatio)
    # 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
开发者ID:quatrosem,项目名称:Bangkok,代码行数:33,代码来源:convexhull.py


注:本文中的scipy.spatial.Delaunay.set_color方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。