subtr_actor/util/mod.rs
1//! Small shared helpers used throughout the crate.
2//!
3//! - [`geometry`] — vector/quaternion/rotation helpers for working with
4//! Rocket League's coordinate space (also re-exported at the crate root as
5//! `geometry`).
6//! - [`search`] — frame/time search utilities (e.g. locating frames by time);
7//! re-exported at the crate root as `search`.
8//! - `vec_map` — a crate-internal small-map structure.
9
10pub mod ballistics;
11pub mod geometry;
12pub mod search;
13pub(crate) mod vec_map;