Browse 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 7 years ago
parent
commit
ae65d09e7f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      abp/fancy.py

+ 1
- 1
abp/fancy.py View File

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


Loading…
Cancel
Save