fj_window/lib.rs
1//! # Fornjot Window Abstraction
2//!
3//! [Fornjot] is an early-stage b-rep CAD kernel written in Rust. The kernel is
4//! split into multiple libraries that can be used semi-independently, and this
5//! is one of those.
6//!
7//! This library provides a window abstraction based on Winit.
8//!
9//! [Fornjot]: https://www.fornjot.app/
10
11mod display;
12mod window;
13
14pub use self::{
15    display::{display, Error},
16    window::WindowError,
17};