iron_shapes_algorithms/
lib.rs

1// SPDX-FileCopyrightText: 2022 Thomas Kramer
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5//! This create contains geometric algorithms for the [iron-shapes](https://codeberg.org/libreda/iron-shapes) crate.
6//! Mostly this are non-trivial algorithms and hence would make the the basic geometry library too complicated.
7//!
8//! # Boolean operations
9//! Boolean operations on polygons are complicated enough to be implemented in a separate crate.
10//! Therefore this crate re-exports [iron-shapes-booleanop](https://codeberg.org/libreda/iron-shapes-booleanop) as `booleanop`.
11
12#![deny(missing_docs)]
13
14pub mod prelude;
15
16pub mod rectangle_decomposition;
17
18// Re-export booleanops
19pub use iron_shapes_booleanop as booleanop;