0
如何生成頂點在圖像之間不移動的演化圖的一系列圖像?他們的位置應該是固定的,當它們抖動時它真的會弄亂動畫。圖形工具數字中的頂點頂點
我使用python graph-tool包,作者的示例爲animating a epidemic,但我沒有使用Gtk。相反,我正在創建劇照:
from graph_tool.all import *
...
graph_draw(g, pos, output_size = (500, 400),
edge_color = [0.6, 0.6, 0.6, 1],
vertex_fill_color = state,
vertex_halo = newly_infected,
vertex_halo_color = [0.8, 0, 0, 0.6],
output = 'frames/sirs{0:06d}.png'.format(count),
)