framealloc 0.11.1

Intent-aware, thread-smart memory allocation for Rust game engines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Rapier physics engine integration with framealloc.
//!
//! Provides utilities to use framealloc with Rapier physics for
//! high-performance bulk allocations of physics data.

#[cfg(feature = "rapier")]
pub mod rapier2d;

#[cfg(feature = "rapier")]
pub mod rapier3d;

#[cfg(feature = "rapier")]
pub use rapier2d::{PhysicsWorld2D, PhysicsEvents2D};

#[cfg(feature = "rapier")]
pub use rapier3d::{PhysicsWorld3D, PhysicsEvents3D};