Nodes: Add fractal Voronoi noise #104620

Merged
Aaron Carlisle merged 1 commits from Douglas-Paul/blender-manual:fractal-voronoi-noise into blender-v4.0-release 2023-11-06 06:24:16 +01:00
3 changed files with 28 additions and 2 deletions

Binary file not shown.

View File

@ -31,6 +31,15 @@ W
Texture coordinate to evaluate the noise at.
Scale
Scale of the noise.
Detail
Number of noise octaves.
The fractional part of the input is multiplied by the magnitude of the highest octave.
Higher number of octaves corresponds to a higher evaluation time.
Roughness
Blend between a smoother noise pattern, and rougher with sharper peaks.
Lacunarity
The difference between the scale of each two consecutive octaves.
Larger values corresponds to larger scale for higher octaves.
Smoothness
The smoothness of the noise.
@ -240,6 +249,10 @@ Distance Metric
Minkowski Exponent: 32.0 (approximation of Chebychev).
Normalize
If enabled, ensures that the output values stay in the range 0.0 to 1.0.
In rare cases, the output value may be outside that range when *Feature* is *F2*.
Outputs
=======

View File

@ -24,6 +24,15 @@ W
Texture coordinate to evaluate the noise at.
Scale
Scale of the noise.
Detail
Number of noise octaves.
The fractional part of the input is multiplied by the magnitude of the highest octave.
Higher number of octaves corresponds to a higher evaluation time.
Roughness
Blend between a smoother noise pattern, and rougher with sharper peaks.
Lacunarity
The difference between the scale of each two consecutive octaves.
Larger values corresponds to larger scale for higher octaves.
Smoothness
The smoothness of the noise.
@ -233,6 +242,10 @@ Distance Metric
Minkowski Exponent: 32.0 (approximation of Chebychev).
Normalize
If enabled, ensures that the output values stay in the range 0.0 to 1.0.
In rare cases, the output value may be outside that range when *Feature* is *F2*.
Outputs
=======