Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions iOverlay/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "i_overlay"
version = "4.3.0"
version = "4.4.0"
authors = ["Nail Sharipov <nailxsharipov@gmail.com>"]
edition = "2024"
description = "Boolean Operations for 2D Polygons: Supports intersection, union, difference, xor, and self-intersections for all polygon varieties."
Expand All @@ -13,8 +13,8 @@ categories = ["algorithms", "graphics", "science::geo", "mathematics", "no-std"]
[dependencies]
i_float = { version = "~1.16.0" }
i_shape = { version = "~1.16.0" }
i_tree = { version = "~0.17.0" }
i_key_sort = { version = "~0.10.1" }
i_tree = { version = "^0.17.0" }
i_key_sort = { version = "^0.10.1" }

#i_float = { path = "../../iFloat"}
#i_shape = { path = "../../iShape"}
Expand Down
3 changes: 1 addition & 2 deletions iOverlay/src/core/relate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ use i_shape::int::shape::{IntContour, IntShape};
///
/// # Example
///
/// ```ignore
/// ```
/// use i_overlay::core::relate::PredicateOverlay;
/// use i_overlay::core::overlay::ShapeType;
/// use i_overlay::segm::build::BuildSegments;
///
/// let mut overlay = PredicateOverlay::new(16);
/// // Add subject and clip segments...
Expand Down