re_viewport 0.32.0

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

#![warn(clippy::iter_over_hash_type)] //  TODO(#6198): enable everywhere

mod system_execution;
mod view_highlights;
mod viewport_ui;

pub use viewport_ui::ViewportUi;

pub mod external {
    pub use re_sdk_types;
}

// TODO(andreas): cfg test this only?
pub use system_execution::{execute_systems_for_view, new_view_query};