Metadata-Version: 2.4
Name: physim-presets
Version: 0.1.0
Summary: Color palettes and physics presets for physim
License-Expression: MIT
Keywords: physim,presets,palettes,physics
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
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-presets

Color palettes and physics parameter presets for [physim](https://github.com/TRC-Loop/physim).

Dependency-free plain data. Install it through physim's extra:

```bash
pip install physim[presets]
```

Then use the presets through physim, which adapts them into `Color` and
`PhysicsParams` values:

```python
from physim import colors, presets

ball = Circle(radius=20, fill=colors.NEON_PINK)
scene = Scene(physics=presets.get("classic"))
```

