nett_hier
nett_hier
I'm also unsure how my changes to `ContourBuilder::smooth_linear` affect performance. I added more casts than previously, as I noticed that numbers without negative values might panic at the `value -...
I guess a slowdown would be expected with a lot of more handling of results now. I'm also seeing differences when running `cargo bench` locally, with the worst difference I've...
I'll have to profile this, I'm a bit surprised that even the `no_smoothing` benchmark is slower when I remove all the result propagation :thinking:
I have started implementing this as I need this feature: https://github.com/SenseLabsDE/contour-rs/tree/grid What I did was add a trait like this to abstract over containers: ```rust pub trait Grid where V:...
My grid branch probably won't be ready by the end of the week, there are still some issues I'm figuring out 1. I'm currently just skipping any square containing at...
Ah, I wasn't aware of the licensing issues. If the crate is derived from an AGPL project MIT+Apache2 wouldn't be possible, yeah. But it could be possible to add a...