topola 0.1.0

Work-in-progress free and open-source topological (rubberband) router and autorouter for printed circuit boards (PCBs)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2026 Topola contributors
//
// SPDX-License-Identifier: MIT OR Apache-2.0

use derive_getters::Getters;

use crate::navmesher::NavmesherBoard;

#[derive(Clone, Debug, Getters)]
pub struct Drawer {
    navmesher_board: NavmesherBoard,
}

impl Drawer {
    pub fn new(navmesher_board: NavmesherBoard) -> Self {
        Self { navmesher_board }
    }
}