fj-core 0.49.0

Early-stage b-rep CAD kernel.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::objects::Sketch;

/// Build a [`Sketch`]
///
/// See [module-level documentation] for context.
///
/// [module-level documentation]: super
pub trait BuildSketch {
    /// Create a sketch with no regions
    fn empty() -> Sketch {
        Sketch::new([])
    }
}

impl BuildSketch for Sketch {}