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


Python Graph.directed方法代码示例

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


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

示例1: Create

# 需要导入模块: import Graph [as 别名]
# 或者: from Graph import directed [as 别名]
 def Create(self, theGraphEditor):
     theGraphEditor.config(cursor="watch")
     
     dial = Dialog(theGraphEditor, 1, 1, "Create Random Planar Graph")
     if dial.result is None:
         theGraphEditor.config(cursor="")
         return
         
     n=dial.result[0]
     if n<=1: return
     m=dial.result[1]
     direction=dial.result[2]
     layout=dial.result[3]
     
     G=Graph()
     G.directed=direction
     
     for v in range(0,n):
         G.AddVertex()
         
     Edges=MaximalPlanarEdges(G,n,direction)
     
     for i in range(0,m):
         pos=random.randint(0,len(Edges)-1)
         G.AddEdge(Edges[pos][0],Edges[pos][1], initialize_weight=False)
         del Edges[pos]
         
     if layout==0:
         if RandomCoords(G):
             DrawNewGraph(theGraphEditor,G,direction)
     elif layout==1:
         if CircularCoords(G):
             DrawNewGraph(theGraphEditor,G,direction)
     elif layout==2:
         if FPP_PlanarCoords(G):
             DrawNewGraph(theGraphEditor,G,direction)
     else:
         if Schnyder_PlanarCoords(G):
             DrawNewGraph(theGraphEditor,G,direction)   
             
     theGraphEditor.config(cursor="")         
开发者ID:ProgVal,项目名称:Gato-mirror,代码行数:43,代码来源:GraphCreator.py


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