I’m writing up the insect wing project so of course I’ve got some changes I’d like to make.
It’s running a little slow when generating (and repeatedly rejecting) primary veins. There might be some low-hanging fruit in terms of speeding that up.
I’d like to generate left and right wings. The primary veins on each side should match but the cross veins should be run separately so I get different output.
Oh. I need to hide the dots representing the inhibitory centers.
I’d like more control over the number of inhibitory centers that are added to each interveinal region. Right now I’m throwing darts but that’s probably unnecessary since I’m also using Lloyd’s relaxation. Can I just add a bunch of dots down the length of the wing based on the area of the interveinal region?
This would not be an optimization. Well, it would, but it wouldn’t be the purpose. I’m seeing some wings where one interveinal region will have a lot of cross veins and the one next to it very few. Adding a specific number of inhibitory centers based on the area of the interveinal region would solve that.
…
Well, generating cross veins is pretty slow, too, it’s just that I never reject a wing based on its cross veins. It’s more important to optimize the generation of primary veins.
One more thing. The slider controls don’t work anymore.
And another. Export just the wing to an image.
…
Looks like most of the rejections are from out of bounds errors. And I’m calculating collisions before checking for out of bounds so that’s part of the reason it’s so slow. I think I needed that before when I was drawing the collision point for visual debugging but no more.
Keeping score:
- Speed up primary vein generation
- Generate left and right wings
- Hide the inhibitory centers
- (big) More control over the density of inhibitory centers
- Fix the sliders
- Export just the wing(s) to an image
Bonus:
- Why is the reference image getting drawn over? Bring it back.