├── Lab1 Crash-balls ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ └── PythonApplication.pyproj ├── README.md └── show.png ├── Lab2 N-body ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ └── PythonApplication.pyproj ├── README.md └── show.png ├── Lab3 Cloth-simulation ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ ├── PythonApplication.pyproj │ └── imgui.ini ├── README.md ├── fuck.jpeg └── show.png ├── Lab4 Dominoes ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ ├── PythonApplication.pyproj │ └── imgui.ini ├── README.md └── show.png ├── Lab5 Water-simulation ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── Position Based Fluids.pdf ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ ├── PythonApplication.pyproj │ └── imgui.ini ├── README.md ├── fuck.jpg └── show.png ├── Lab6 Temperature-diffuse ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ ├── PythonApplication.pyproj │ └── imgui.ini ├── README.md └── show.png ├── Lab7 Path-tracing ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ ├── PythonApplication.pyproj │ ├── __pycache__ │ │ └── head.cpython-311.pyc │ ├── head.py │ └── imgui.ini ├── README.md └── show.png ├── Lab8 Stable-fluid ├── .vs │ └── PythonApplication │ │ └── v16 │ │ └── .suo ├── PythonApplication.sln ├── PythonApplication │ ├── PythonApplication.py │ ├── PythonApplication.pyproj │ └── __pycache__ │ │ └── head.cpython-311.pyc ├── README.md └── show.png ├── README.md ├── README_zh.md ├── book.jpg └── taichi.png /Lab1 Crash-balls/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab1 Crash-balls/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab1 Crash-balls/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab1 Crash-balls/PythonApplication.sln -------------------------------------------------------------------------------- /Lab1 Crash-balls/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab1 Crash-balls/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab1 Crash-balls/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab1 Crash-balls/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab1 Crash-balls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab1 Crash-balls/README.md -------------------------------------------------------------------------------- /Lab1 Crash-balls/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab1 Crash-balls/show.png -------------------------------------------------------------------------------- /Lab2 N-body/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab2 N-body/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab2 N-body/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab2 N-body/PythonApplication.sln -------------------------------------------------------------------------------- /Lab2 N-body/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab2 N-body/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab2 N-body/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab2 N-body/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab2 N-body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab2 N-body/README.md -------------------------------------------------------------------------------- /Lab2 N-body/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab2 N-body/show.png -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab3 Cloth-simulation/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab3 Cloth-simulation/PythonApplication.sln -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab3 Cloth-simulation/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab3 Cloth-simulation/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/PythonApplication/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=400,400 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab3 Cloth-simulation/README.md -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/fuck.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab3 Cloth-simulation/fuck.jpeg -------------------------------------------------------------------------------- /Lab3 Cloth-simulation/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab3 Cloth-simulation/show.png -------------------------------------------------------------------------------- /Lab4 Dominoes/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab4 Dominoes/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab4 Dominoes/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab4 Dominoes/PythonApplication.sln -------------------------------------------------------------------------------- /Lab4 Dominoes/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab4 Dominoes/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab4 Dominoes/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab4 Dominoes/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab4 Dominoes/PythonApplication/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=400,400 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /Lab4 Dominoes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab4 Dominoes/README.md -------------------------------------------------------------------------------- /Lab4 Dominoes/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab4 Dominoes/show.png -------------------------------------------------------------------------------- /Lab5 Water-simulation/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab5 Water-simulation/Position Based Fluids.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/Position Based Fluids.pdf -------------------------------------------------------------------------------- /Lab5 Water-simulation/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/PythonApplication.sln -------------------------------------------------------------------------------- /Lab5 Water-simulation/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab5 Water-simulation/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab5 Water-simulation/PythonApplication/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=400,400 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /Lab5 Water-simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/README.md -------------------------------------------------------------------------------- /Lab5 Water-simulation/fuck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/fuck.jpg -------------------------------------------------------------------------------- /Lab5 Water-simulation/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab5 Water-simulation/show.png -------------------------------------------------------------------------------- /Lab6 Temperature-diffuse/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab6 Temperature-diffuse/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab6 Temperature-diffuse/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab6 Temperature-diffuse/PythonApplication.sln -------------------------------------------------------------------------------- /Lab6 Temperature-diffuse/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab6 Temperature-diffuse/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab6 Temperature-diffuse/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab6 Temperature-diffuse/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab6 Temperature-diffuse/PythonApplication/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=400,400 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /Lab6 Temperature-diffuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab6 Temperature-diffuse/README.md -------------------------------------------------------------------------------- /Lab6 Temperature-diffuse/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab6 Temperature-diffuse/show.png -------------------------------------------------------------------------------- /Lab7 Path-tracing/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab7 Path-tracing/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/PythonApplication.sln -------------------------------------------------------------------------------- /Lab7 Path-tracing/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab7 Path-tracing/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab7 Path-tracing/PythonApplication/__pycache__/head.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/PythonApplication/__pycache__/head.cpython-311.pyc -------------------------------------------------------------------------------- /Lab7 Path-tracing/PythonApplication/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/PythonApplication/head.py -------------------------------------------------------------------------------- /Lab7 Path-tracing/PythonApplication/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=60,60 3 | Size=400,400 4 | Collapsed=0 5 | 6 | -------------------------------------------------------------------------------- /Lab7 Path-tracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/README.md -------------------------------------------------------------------------------- /Lab7 Path-tracing/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab7 Path-tracing/show.png -------------------------------------------------------------------------------- /Lab8 Stable-fluid/.vs/PythonApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab8 Stable-fluid/.vs/PythonApplication/v16/.suo -------------------------------------------------------------------------------- /Lab8 Stable-fluid/PythonApplication.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab8 Stable-fluid/PythonApplication.sln -------------------------------------------------------------------------------- /Lab8 Stable-fluid/PythonApplication/PythonApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab8 Stable-fluid/PythonApplication/PythonApplication.py -------------------------------------------------------------------------------- /Lab8 Stable-fluid/PythonApplication/PythonApplication.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab8 Stable-fluid/PythonApplication/PythonApplication.pyproj -------------------------------------------------------------------------------- /Lab8 Stable-fluid/PythonApplication/__pycache__/head.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab8 Stable-fluid/PythonApplication/__pycache__/head.cpython-311.pyc -------------------------------------------------------------------------------- /Lab8 Stable-fluid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab8 Stable-fluid/README.md -------------------------------------------------------------------------------- /Lab8 Stable-fluid/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/Lab8 Stable-fluid/show.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/README_zh.md -------------------------------------------------------------------------------- /book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/book.jpg -------------------------------------------------------------------------------- /taichi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayinzhang/Taichi-Projects/HEAD/taichi.png --------------------------------------------------------------------------------