mirror of
https://gitlab.com/gaelysam/mapgen_rivers.git
synced 2024-12-29 12:20:41 +01:00
Print a clear message when grid is ready
Also use plt.pause before plotting, ensuring plot is updated in real time
This commit is contained in:
parent
52766e8918
commit
1f41423104
@ -142,4 +142,6 @@ with open('size', 'w') as sfile:
|
|||||||
sfile.write('{:d}\n{:d}'.format(mapsize+1, mapsize+1))
|
sfile.write('{:d}\n{:d}'.format(mapsize+1, mapsize+1))
|
||||||
|
|
||||||
terrainlib.stats(model.dem, model.lakes)
|
terrainlib.stats(model.dem, model.lakes)
|
||||||
terrainlib.plot(model.dem, model.lakes, title='Final map')
|
print()
|
||||||
|
print('Grid is ready for use!')
|
||||||
|
terrainlib.plot(model.dem, model.lakes, title='Final grid, ready for use!')
|
||||||
|
@ -55,6 +55,7 @@ if has_matplotlib:
|
|||||||
def plot(*args, **kwargs):
|
def plot(*args, **kwargs):
|
||||||
plt.clf()
|
plt.clf()
|
||||||
view_map(*args, **kwargs)
|
view_map(*args, **kwargs)
|
||||||
|
plt.pause(0.01)
|
||||||
plt.show()
|
plt.show()
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user