We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c55d555 commit 5f5ef76Copy full SHA for 5f5ef76
include/FastNoise/Generators/Simplex.inl
@@ -54,7 +54,7 @@ class FastSIMD::DispatchClass<FastNoise::Simplex, SIMD> final : public virtual F
54
float32v gradientRampValue1 = GetGradientDotPerlin( HashPrimes( seed, FS::MaskedAdd( xGreaterEqualY, xPrimedBase, int32v( Primes::X ) ), FS::InvMaskedAdd( xGreaterEqualY, yPrimedBase, int32v( Primes::Y ) ) ), dx1, dy1 );
55
float32v gradientRampValue2 = GetGradientDotPerlin( HashPrimes( seed, xPrimedBase + int32v( Primes::X ), yPrimedBase + int32v( Primes::Y ) ), dx2, dy2 );
56
57
- constexpr double kBounding = 49.918426513671875;
+ constexpr double kBounding = 38.283687591552734375;
58
59
return this->ScaleOutput( FS::FMulAdd( gradientRampValue0, falloff0, FS::FMulAdd( gradientRampValue1, falloff1, gradientRampValue2 * falloff2 ) ),
60
-1 / kBounding, 1 / kBounding );
0 commit comments