1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! Rerun Viewport Panel
//!
//! This crate provides the central panel that contains all space views.

// TODO(#6330): remove unwrap()
#![allow(clippy::unwrap_used)]

mod auto_layout;
mod screenshot;
mod space_view_highlights;
mod system_execution;
mod viewport;

pub use self::viewport::Viewport;

pub mod external {
    pub use re_space_view;
    pub use re_types_blueprint;
}