1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Fornjot Interop Types
//!
//! [Fornjot] is an early-stage b-rep CAD kernel written in Rust. The kernel is
//! split into multiple libraries that can be used semi-independently, and this
//! is one of those.
//!
//! This library defines types that allow other components of Fornjot to
//! interoperate, without having to depend on each other.
//!
//! [Fornjot]: https://www.fornjot.app/

#![warn(missing_docs)]

pub mod ext;
pub mod mesh;
pub mod model;