I’m told that Smooth F1 Voronoi uses Smooth Minimum to visually smooth out the Voronoi Edges.
But how does it do that? I know the math behind Smooth Minimum and F1 Worley Noise, but how does Smooth Minimum selectively choose the Voronoi Edges as sharp corners to be smoothed out instead of the top or bottom of the displaced Voronoi Diagram?
You can see that the separate Minimum function slices the top of the displaced Voronoi Diagram, but to make that slice looks more organic, we can use Smooth Minimum (smin) instead of Minimum (min).
smin literally does the same job as min, it also visually smooth out the sharp corners generated by min.
So, Smooth F1 Voronoi is different to the combination F1 Voronoi + Smooth Minimum. Please help me understand what the math behind Smooth F1 Voronoi is. Also, what is “Smoothness” input? Is it the same as parameter “Distance” of Smooth Minimum?
Thank you!
Thank you. I’m a math student, not a programmer so unfortunately I can’t read codes. I’ve been asking around though but programmers can’t seem to help.
Really appreciate you searching for the code. But to be honest, I fail to understand the code at all. Reading the code is easy to you but not to non-programmers.
I think an intuition should be fine for me. Someone told the the intuition of Smooth F1 Worley Noise is that it uses Smooth Minimum function smin(d₁,d₂,d₃,…) instead of Minimum function min(d₁,d₂,d₃,…) like the original Worley Noise. Would this be correct?
While that’s the intuition, they told me the Blender’s implemented Smooth F1 Worley Noise actually implemented SmoothStep Interpolation instead of Smooth Minimum. Though, theoretically, should the intuition and the code produce the same thing?
Thank you. Yes I have!
It introduces Voronoi Diagram and Smooth Minimum separately but doesn’t explain how Smooth Minimum is used to create Smooth F1 Voronoi.
I know both Voronoi Diagram and Smooth Minimum and can derive them, but I have no idea how Smooth F1 Voronoi is created.
To get the result for one pixel, it computes the voronoi distances of all its 5x5 neighboring pixels and computes weights for them in a fancy way to mix them. This might be the smooth minimum, but I am really not sure. (To understand it better, I would need to invest a lot of time.)
Thank you. I’ll keep asking around and hope for the best.
By the way, did you mean 5x5 neighboring Voronoi Seeds (Feature Points) instead of 5x5 neighboring pixels? As far as I know, in Worley Noise, a point (pixel) is evaluated based on its distance to the nearest Voronoi Seed, not nearest pixel.