Parcourir la source

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 il y a 7 ans
Parent
révision
ae65d09e7f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      abp/fancy.py

+ 1
- 1
abp/fancy.py Voir le fichier

@@ -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():


Chargement…
Annuler
Enregistrer