11 个版本
0.4.1 | 2019 年 7 月 18 日 |
---|---|
0.4.0 | 2019 年 7 月 7 日 |
0.3.1 | 2018 年 7 月 21 日 |
0.2.3 | 2018 年 7 月 17 日 |
0.1.0 | 2018 年 1 月 5 日 |
#228 in 可视化
每月 47 次下载
15KB
325 行
gridsim-ui
可视化 gridsim 网格
示例
extern crate gridsim;
extern crate gridsim_ui;
use gridsim::{SquareGrid, GOL};
use gridsim_ui::Loop;
fn main() {
let grid = SquareGrid::<GOL>::new_true_coords(
1024,
1024,
vec![(0, 1), (1, 0), (1, 1), (1, 2), (2, 0)],
);
Loop::new_bool().run(grid);
}
查看 examples/langtons_ant.rs
了解如何定义 Rule
。
查看 evomata12 了解如何定义 Sim
。
依赖项
~11–20MB
~304K SLoC