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


Python Path.append方法代码示例

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


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

示例1: shortestPath

# 需要导入模块: from matplotlib.path import Path [as 别名]
# 或者: from matplotlib.path.Path import append [as 别名]
def shortestPath(G,start,end):
   """
   Find a single shortest path from the given start vertex
   to the given end vertex.
   The input has the same conventions as Dijkstra().
   The output is a list of the vertices in order along
   the shortest path.
   """

   D,P = Dijkstra(G,start,end)
   Path = []
   while 1:
      Path.append(end)
      if end == start: break
      end = P[end]
   Path.reverse()
   return Path
开发者ID:jeth64,项目名称:svgcfrec2,代码行数:19,代码来源:skeleton.py

示例2: Path

# 需要导入模块: from matplotlib.path import Path [as 别名]
# 或者: from matplotlib.path.Path import append [as 别名]

lw = 25.0
verts = np.array([[-0.1, -0.5],
                  [ 0.0, +0.5],
                  [+0.1, -0.5]])
verts = verts*200 + (400,400)
codes = [Path.MOVETO, Path.LINETO,Path.LINETO ]
path = Path(verts, codes)
patch = patches.PathPatch(path, facecolor='none', lw=lw, alpha=.25)
patch.set_path_effects([PathEffects.Stroke(capstyle='butt')])
axes.add_patch(patch)


path = PathCollection()
path.append(verts)

w = lw/2.0
P = []
for vertex in path[0].vertices:
    position = vertex['a_position']
    segment  = vertex['a_segment']
    t1  = vertex['a_tangents'][:2]
    t1 /= np.sqrt(((t1*t1)).sum())
    t2  = vertex['a_tangents'][2:]
    t2 /= np.sqrt(((t2*t2)).sum())
    u,v = vertex['a_texcoord']
    angle  = np.arctan2 (t1[0]*t2[1]-t1[1]*t2[0],  t1[0]*t2[0]+t1[1]*t2[1])
    t = t1+t2
    t /= np.sqrt(((t*t)).sum())
    o = np.array([t[1], -t[0]])
开发者ID:Eric89GXL,项目名称:gl-agg,代码行数:32,代码来源:demo-error-3-analysis.py


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