fj_core/geometry/mod.rs
1//! Types that are tied to objects, but aren't objects themselves
2
3mod boundary;
4mod geometry;
5mod half_edge;
6mod path;
7mod surface;
8
9pub use self::{
10 boundary::{CurveBoundary, CurveBoundaryElement},
11 geometry::Geometry,
12 half_edge::HalfEdgeGeometry,
13 path::{GlobalPath, SurfacePath},
14 surface::SurfaceGeometry,
15};