Metadata-Version: 2.4
Name: rapier3d
Version: 0.36.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Rust
Classifier: Topic :: Games/Entertainment :: Simulation
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Dist: pytest>=7 ; extra == 'dev'
Requires-Dist: hypothesis>=6 ; extra == 'dev'
Requires-Dist: numpy>=1.21 ; extra == 'dev'
Requires-Dist: ruff>=0.5 ; extra == 'dev'
Requires-Dist: mypy>=1.10 ; extra == 'dev'
Requires-Dist: numpy>=1.21 ; extra == 'numpy'
Provides-Extra: dev
Provides-Extra: numpy
Summary: Python bindings for Rapier (3D, f32) — a fast, deterministic physics engine.
Keywords: physics,dynamics,rigid-body,simulation,rapier,3d
Home-Page: https://rapier.rs
Author-email: Sébastien Crozet <sebcrozet@dimforge.com>
License: Apache-2.0
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Documentation, https://rapier.rs/docs/
Project-URL: Homepage, https://rapier.rs
Project-URL: Issues, https://github.com/dimforge/rapier/issues
Project-URL: Repository, https://github.com/dimforge/rapier

# rapier3d

Python bindings for [Rapier](https://rapier.rs) — a fast, deterministic
physics engine written in Rust. This package provides the **3D, f32**
build.

```bash
pip install rapier3d
```

```python
import rapier3d as rp

bodies = rp.RigidBodySet()
colliders = rp.ColliderSet()
body = bodies.insert(rp.RigidBody.dynamic().translation((0.0, 5.0, 0.0)))
```

## License

Apache-2.0

