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
pub const EPSILON: f64 = 0.001;
#[derive(Clone, Copy)]
pub enum BlockKind {
Box,
Connector,
Both,
None,
}
impl BlockKind {
pub fn is_box(&self) -> bool {
match self {
BlockKind::None | BlockKind::Connector => false,
BlockKind::Both | BlockKind::Box => true,
}
}
pub fn is_connector(&self) -> bool {
match self {
BlockKind::None | BlockKind::Box => false,
BlockKind::Both | BlockKind::Connector => true,
}
}
}
mod bk;
mod edge_fixer;
mod move_between_rows;
mod simple;
mod verifier;
pub mod place;
pub use place::Placer;