Source code for simvx.core.physics.builtin
"""BuiltinPhysics: the pure-Python, always-available physics backend.
Role
----
Package for the default backend implementation of the
:class:`~simvx.core.physics.world.PhysicsWorld` interface. It is pure Python (numpy
only), ships with the engine, and needs no optional native dependency. It is
the zero-config / web default and the parity target the optional ``JoltPhysics``
backend must match behaviourally.
"""
from .world import BuiltinPhysics
__all__ = ["BuiltinPhysics"]