Procházet zdrojové kódy

Give dimension as keyword arg

Is this going to fix errors with different versions of networkx? I don't
know -- I'm on a plane mate.
master
Pete Shadbolt před 7 roky
rodič
revize
ae65d09e7f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      abp/fancy.py

+ 1
- 1
abp/fancy.py Zobrazit soubor

@@ -50,7 +50,7 @@ class GraphState(graphstate.GraphState, networkx.Graph):

def layout(self):
""" Automatically lay out the graph """
pos = networkx.spring_layout(self, 3, scale=np.sqrt(self.order()))
pos = networkx.spring_layout(self, dim=3, scale=np.sqrt(self.order()))
middle = np.average(pos.values(), axis=0)
pos = {key: value - middle for key, value in pos.items()}
for key, (x, y, z) in pos.items():


Načítá se…
Zrušit
Uložit