1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//! Partially defined objects
//!
//! This module contains types that mirror the full object types from
//! [`crate::objects`], only the types from this module can be defined only
//! partially, with the non-defined parts being inferred when a full object is
//! constructed.
//!
//! # Implementation Note
//!
//! This API was created as a replacement for the [original partial object
//! API][crate::partial]. This is still a work in progress.

mod objects;
mod traits;
mod wrapper;

pub use self::{
    objects::{
        curve::{MaybeSurfacePath, PartialCurve, PartialGlobalCurve},
        cycle::PartialCycle,
        edge::{PartialGlobalEdge, PartialHalfEdge},
        face::PartialFace,
        shell::PartialShell,
        sketch::PartialSketch,
        solid::PartialSolid,
        surface::PartialSurface,
        vertex::{PartialGlobalVertex, PartialSurfaceVertex},
    },
    traits::{HasPartial, PartialObject},
    wrapper::{FullToPartialCache, Partial},
};