WardBenjamin / SimplexNoise

C# Simplex Noise (1D, 2D, 3D). Supports arbitrary sizes and scales.
BSD 3-Clause "New" or "Revised" License
160 stars 38 forks source link

Discontinuities in 3D noise #8

Open asklar opened 4 years ago

asklar commented 4 years ago

I'm generating noise on a 3d sphere and then projecting it onto a plane. Everything works fine as long as I don't reset the seed value; but resetting the seed value seems to introduce discontinuities in the generated data which makes it unusable. The discontinuities look like a sine function plot on my projected plane, which I believe means it would correspond to a straight line in cartesian 3d space.

DoogeJ commented 3 years ago

@asklar this might be related to issue #7 ; if you ever find a solution 👀 could you please update that one as well.

asklar commented 3 years ago

Yes seems related