gymnasia 3.0.5

OpenAI Gymnasium environments in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Drawing primitives for environment visualization.
pub mod draw;
/// Wraps environments with rendering capabilities.
#[cfg(feature = "render")]
mod render_env;
/// Frame collection and render mode logic.
pub mod renderer;
/// Macroquad rendering backend.
#[cfg(feature = "render")]
pub mod screen;

#[cfg(feature = "render")]
pub use render_env::RenderEnv;