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
32
33
34
35
36
37
38
39
40
41
42
mod blocks;
mod handle;
mod store;
use crate::objects::{Curve, GlobalCurve, GlobalVertex, Surface};
pub use self::{
handle::{Handle, HandleWrapper, ObjectId},
store::{Iter, Reservation, Store},
};
#[derive(Debug, Default)]
pub struct Stores {
pub curves: Store<Curve>,
pub global_curves: Store<GlobalCurve>,
pub global_vertices: Store<GlobalVertex>,
pub surfaces: Store<Surface>,
}
impl Stores {
pub fn new() -> Self {
Self::default()
}
}