fj_interop/
lib.rs

1//! # Fornjot Interop Types
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 defines types that allow other components of Fornjot to
8//! interoperate, without having to depend on each other.
9//!
10//! [Fornjot]: https://www.fornjot.app/
11
12mod color;
13mod mesh;
14mod model;
15
16pub mod ext;
17
18pub use self::{
19    color::Color,
20    mesh::{Index, Mesh, Triangle},
21    model::Model,
22};