Metadata-Version: 2.4
Name: physim-examples
Version: 0.1.0
Summary: Runnable example scenes for physim
License-Expression: MIT
Keywords: physim,examples,animation
Author: Arne K.
Author-email: me@arne.sh
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Video
Requires-Dist: physim (>=0.0.0)
Project-URL: Homepage, https://github.com/TRC-Loop/physim
Project-URL: Issues, https://github.com/TRC-Loop/physim/issues
Project-URL: Repository, https://github.com/TRC-Loop/physim
Description-Content-Type: text/markdown

# physim-examples

Runnable example scenes for [physim](https://github.com/TRC-Loop/physim).

```bash
pip install physim[examples]
python -m physim_examples                      # list them
python -m physim_examples.bouncing_ball        # render one
python -m physim_examples.escape_ring --debug  # with the stats overlay
```

Each example is a plain Python file, so it also works as a starting point for
your own scenes:

```bash
physim render $(python -c "import physim_examples.bouncing_ball as m; print(m.__file__)")
```

