Perlin Noise in Python Revisited

preview_player
Показать описание
About two years ago, I made a video about generating 1D Perlin noise in Python and shared a module that other coders could use. However, I recently found out that the generation algorithm that I had been using was not correct. I've unlisted that video, so here is my remake of that.

Resources:

Twitter:
Рекомендации по теме
Комментарии
Автор

It's fascinating how hard to come by a good explanation of perlin noise can be. Majority of videos just give a premade library and call it done.

Автор

not many views, but a great explanation on how it works. Ty very much for this explanation

crusader
Автор

Hey bro, great video, loved the style of editing and the clear description. You deserve a great deal more subscribers. Keep grinding :)

danflockhart
Автор

How can we get a Seamless Perlin Noise Loop?

ThankYouESM
Автор

How do I convert a value from -1 to 1 to 0 to 255?

friszld
Автор

Every movie about Perlin assumed, its obvious what to do with two dot products.
I' ve got dot products from "left size" (LeftGradient * distance [0.0 to 1.0]) and from "rigth side" (RigthGradient * distance [0.0 to -1.0] and... what to do with this two valuses... ADD, AVERAGE or so?
Please help me understand this step.

TomaszB
Автор

can someone tell the pypi prelin noise module', s
noise = PerlinNoise()
noise(any_value)

will give what max and min value
i want to know the range of it.
can anybody tell?

vanshraj
Автор

how to convert you pelin noise 1d code in 2d perlin noise code?

kaklikcontapessoal