[boolean] Add basic boolean functionality (boolean() and Polygon.boolean())

This commit is contained in:
jan 2026-02-16 17:41:58 -08:00
commit 7ad59d6b89
8 changed files with 430 additions and 4 deletions

View file

@ -69,6 +69,7 @@ visualize = ["matplotlib"]
text = ["matplotlib", "freetype-py"]
manhattanize = ["scikit-image"]
manhattanize_slow = ["float_raster"]
boolean = ["pyclipper"]
[tool.ruff]
@ -106,3 +107,9 @@ lint.ignore = [
addopts = "-rsXx"
testpaths = ["masque"]
[tool.mypy]
mypy_path = "stubs"
python_version = "3.11"
strict = false
check_untyped_defs = true