This commit is contained in:
randogoth 2024-04-07 19:15:39 +03:00
parent a56705383f
commit f6833a3d48
4 changed files with 200 additions and 0 deletions

View file

@ -6,6 +6,10 @@ edition = "2021"
[lib]
name = "xenobalanus"
[features]
default = ["three-d"]
three-d = ["dep:simple_delaunay_lib"]
[dependencies]
delaunator = "1.0.2"
geo = "0.28.0"
@ -14,3 +18,4 @@ itertools = "0.12.1"
rand = "0.8.5"
rayon = "1.9.0"
statrs = "0.16.0"
simple_delaunay_lib = { version = "0.2.0", git = "https://github.com/ibujah/simple_delaunay_lib", optional = true }