1use std::collections::HashMap;
2
3#[allow(dead_code)]
4pub struct Group {
5 id: i64,
6 nodes: Vec<i64>,
7 min_width: f32,
8 max_widht: f32,
9 position: [f32; 2],
10 width: f32,
11 height: f32
12}
13#[allow(dead_code)]
14pub type Groups = HashMap<i64, Group>;