├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── dem.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.png 3 | *.mp4 4 | .idea 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denver-Pilphis/taichi_dem/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denver-Pilphis/taichi_dem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denver-Pilphis/taichi_dem/HEAD/README.md -------------------------------------------------------------------------------- /dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denver-Pilphis/taichi_dem/HEAD/dem.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | taichi>=1.1.0 2 | --------------------------------------------------------------------------------