Skip to content

Commit

Permalink
Merge branch 'master' of github.com:benmaier/netwulf
Browse files Browse the repository at this point in the history
  • Loading branch information
benmaier committed May 14, 2019
2 parents c8ffeb8 + 203cc07 commit 39b3d0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion netwulf/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Contains a bunch of information about this package.
"""

__version__ = "0.0.14"
__version__ = "0.0.15"

__author__ = "Ulf Aslak, Benjamin F. Maier"
__copyright__ = "Copyright 2018, Ulf Aslak, Benjamin F. Maier"
Expand Down
2 changes: 1 addition & 1 deletion netwulf/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def draw_netwulf(network_properties, fig=None, ax=None, figsize=None):

for node in network_properties['nodes']:
XY.append([node['x'], height - node['y']])
# size has to be given in points**2
# size has to be given in points*2
size.append( 2*node['radius'] )
node_colors.append(node['color'])

Expand Down

0 comments on commit 39b3d0b

Please sign in to comment.