It turned out to be much easier to skip collision testing for adjacent line segments than to try to get the collision test to pass in those cases. Theoretically if I ignore the endpoints no collision should be detected but I think errors in floating point number representations result in slight overlaps some of the time.
It works great now, though.
Here are some with no collisions detected:
Here are some with collisions detected:
The ones with collisions look nice but they won’t do for insect wings. So I’ll have the collision check re-roll the parameters when one is detected.
Also, I accumulated a lot of debugging output (pun intended) in the process so time to clean it up.
Getting lots of interesting primary veins now:
There is often quite a big difference between the leading edge and the next primary vein. Not ideal.
Also, I’m curious what patterns emerge when the parameter space is plotted out on a grid. Would I be able to see the boundaries between wings with collisions and those without? Will there be a region that contains all the aesthetically pleasing vein layouts?
Another possibility is to perform other tests on each generated wing. In particular, I could test whether the distance between two primary veins exceeds a threshold. Such a wing wouldn’t exist in nature because some areas will never get nutrients. A test like that would avoid outputs like this:
Another potential check would be to make sure the veins have smooth curves. A lot of the veins change direction immediately after the first segment like this:
Another option is to eliminate the 0th primary vein altogether. If the first two vein indices are 1 and 2 they’ll probably be more consistent with each other than 0 and 1.
It’ll ruin my nice leading edge but might be worth a shot.
…
That was an easy change and it helps a lot. At this point, getting variation in the leading edge is better, too. I guess it’s time to drop the reference image.
I’d love to randomize some other parameters, such as those controlling the number of generations and thus the length of each primary vein. But for now maybe it’s best to move onto the next step in the workflow rather than continuing sideways exploration. (-:
So.
I need two outputs from this script.
- A mask representing the area of the wing. Draw lines between the endpoints of each primary vein and fill.
- A mask representing the locations of the primary veins. I’m not sure exactly how I’ll use that yet. Maybe one chemical will be fed from the pixels covered by primary veins. Maybe diffusion will be faster along the primary veins. It’ll need some experimentation.
So the next few things I need to do:
- Determine a bounding box for the primary veins.
- Generate an image mask for the wing shape.
- Generate an image mask for the primary veins (try varying the thickness, too).