fj_core/operations/build/sketch.rs
1use crate::objects::Sketch;
2
3/// Build a [`Sketch`]
4///
5/// See [module-level documentation] for context.
6///
7/// [module-level documentation]: super
8pub trait BuildSketch {
9 /// Create a sketch with no regions
10 fn empty() -> Sketch {
11 Sketch::new([])
12 }
13}
14
15impl BuildSketch for Sketch {}