TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Noise in Creative Coding

250 pointsby winkerVSbecksabout 4 years ago

9 comments

arthur2e5about 4 years ago
Note the algorithm is patented(!) per Wikipedia: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Simplex_noise#Legal_status" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Simplex_noise#Legal_status</a><p>There are six patent claims that I have no interest in reading. Apparently there is also an OpenSimplex noise for circumventing the patent, but it only goes up to 4D [simplex usefully goes up to 5D].
评论 #26906507 未加载
评论 #26908778 未加载
whalesaladabout 4 years ago
This is a very important concept to understand in visual design too. Sometimes perfect alignment, symmetry, etc... can be the wrong way to do something. Hardly anything in nature is 100% symmetrical. These are sometimes things that go unnoticed by the conscious mind but your subconcious will pick up on it.
评论 #26908266 未加载
评论 #26906607 未加载
waprinabout 4 years ago
Really nice article and demos, very informative.<p>Maybe unsurprisingly, noise is a really important aspect of audio and music as well. A lot of synthesizers have a parameter for adding white or pink noise to sounds. What&#x27;s interesting is in a lot of music, my ears would never pick out the noise without actively listening very closely, but if you take the noise away the music sounds way more plain and empty in a very subtle way.
评论 #26911532 未加载
dahartabout 4 years ago
Great article, I love all the picture and interactive demos. The flow visualizations are very cool too. I do feel like the foundations could be tidied up a little though.<p>&gt; What we need is a smoother, more organic randomness. That is what the noise function generates<p>Noise is really interpolated random numbers, and you can interpolate spatially and&#x2F;or temporally. So noise definitely is smoother than a random number, but not exactly more organic.<p>&gt; There are two flavours of noise—Perlin and Simplex.<p>There are lots more than two kinds of noise, just like there are a lot of different ways to interpolate data. This sentence should be corrected if possible.<p>&gt; Vector fields are cool, but flow fields are an even more exciting visualization.<p>I don’t think this is standard terminology, flow field and vector field mean the same thing to me. If you google those two terms, you find images of what you’re calling vector fields for both, and also articles that say explicitly that they mean the same thing.<p>I usually think of the advected lines that are referred to as “flow” here called “streamlines”, or a “streamline visualization”.<p>BTW, the flow visualization rabbit hole is deep. The advection method in the article is a Newton integration, and there are many other ways push the particles around a vector field - and sometimes it really matters! It’s fun to figure out how to draw flow streamlines if the field is chaotic or divergent. Even more interesting &amp; difficult is to compute and visualize the boundary (“separatrix”) between sections of the field that have different behavior.
DIVx0about 4 years ago
As an aspiring plotter artist (is that a thing?) I find this to be a very good resource, thanks for putting it together.
评论 #26910336 未加载
评论 #26909870 未加载
vb42about 4 years ago
This is really cool and super informative! I used Perlin noise in a side project of mine a couple months ago to make cool textured planets, which you might enjoy checking out <a href="https:&#x2F;&#x2F;vinaybhaip.com&#x2F;blog&#x2F;2021&#x2F;01&#x2F;26&#x2F;perlin-planets" rel="nofollow">https:&#x2F;&#x2F;vinaybhaip.com&#x2F;blog&#x2F;2021&#x2F;01&#x2F;26&#x2F;perlin-planets</a>
评论 #26906099 未加载
xyzzy_plughabout 4 years ago
&gt; There are two flavours of noise—Perlin and Simplex.<p>Value noise? Worley? There&#x27;s a ton of algorithms, not just Perlin&#x27;s. I like Pixar&#x27;s Wavelet more than the patent-free Simplex implementations, which are all kinda disappointing knockoffs.<p>Value noise is comically easy to implement, and comes in handy in a pinch. Usually loads of artifacts. Perlin noise is also easy but a bit more intricate (my first attempt at a fixed-point implementation got a sign wrong).<p>Notably I think Minecraft had a buggy implementation of multidimensional noise for a long long time, visible along chunk boundaries in the form of very sharp edges&#x2F;transitions.
评论 #26911162 未加载
babyabout 4 years ago
For some reason I thought this would randomly generate a test-drive suite that you&#x27;ll to pass by creatively implementing whatever makes the random tests pass.
piplikocabout 4 years ago
Great article, I loved the interactive examples