├── FUNDING.yml ├── README.md ├── Shapes.py ├── Vector.py ├── __pycache__ ├── Shape3D.cpython-39.pyc ├── Shapes.cpython-39.pyc ├── Tuples.cpython-39.pyc ├── Vector.cpython-39.pyc ├── constants.cpython-39.pyc ├── matrix.cpython-39.pyc ├── particle.cpython-39.pyc ├── ui.cpython-39.pyc └── uiParameters.cpython-39.pyc ├── constants.py ├── main.py ├── ui.py └── uiParameters.py /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/README.md -------------------------------------------------------------------------------- /Shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/Shapes.py -------------------------------------------------------------------------------- /Vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/Vector.py -------------------------------------------------------------------------------- /__pycache__/Shape3D.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/Shape3D.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/Shapes.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/Shapes.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/Tuples.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/Tuples.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/Vector.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/Vector.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/matrix.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/matrix.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/particle.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/particle.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/ui.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/ui.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/uiParameters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/__pycache__/uiParameters.cpython-39.pyc -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/constants.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/main.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/ui.py -------------------------------------------------------------------------------- /uiParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josephbakulikira/Cloth-Simulation-With-python---Verlet-Integration/HEAD/uiParameters.py --------------------------------------------------------------------------------