Skip to main content

jellyflow_runtime/runtime/auto_pan/
mod.rs

1//! Renderer-neutral auto-pan helpers.
2//!
3//! Adapters own frame scheduling and raw pointer capture. The runtime owns deterministic
4//! screen-space edge-proximity math and feeds the existing viewport pan path.
5
6mod planner;
7mod store;
8mod types;
9
10pub use planner::{compute_auto_pan, compute_selection_auto_pan};
11pub use types::{
12    AutoPanActivation, AutoPanOutcome, AutoPanPlan, AutoPanRequest, SelectionAutoPanRequest,
13};