I.7 : What is OpenSimplex Noise?

Поділитися
Вставка
  • Опубліковано 3 бер 2019
  • Simplex Noise (2001) is an improvement on "classic" Perlin noise (1983). I discuss a bit of the history of noise algorithms and show how to use the Java source code for Open Simplex Noise in Processing.
    🎥Next Video: Random Walker Coding Challenge: • Random Walker in p5.js...
    Links discussed in this video:
    🔗 Perlin Noise: en.wikipedia.org/wiki/Perlin_...
    🔗 web.archive.org/web/2016053012...
    🔗 Gradient Noise: en.wikipedia.org/wiki/Gradien...
    🔗 Simplex Noise: en.wikipedia.org/wiki/Simplex...
    🔗 Stefan Gustavson: staffwww.itn.liu.se/~stegu/
    🔗 Simplex noise demystified: staffwww.itn.liu.se/~stegu/sim...
    🔗 OpenSimplexNoise.java by KdotJPG: gist.github.com/KdotJPG/b1270...
    🔗 Etienne Jacob: / necessary-disorder
    🚂Website: thecodingtrain.com/
    💡Github: github.com/CodingTrain
    💬Discord: / discord
    💖Membership: ua-cam.com/users/thecodingtrainjoin
    🛒Store: standard.tv/collections/the-c...
    📚Books: www.amazon.com/shop/thecoding...
    🖋️Twitter: / thecodingtrain
    🎥 More Perlin Noise: • 13: What is Perlin Noise?
    🎥Coding Challenges: • Coding Challenges
    🎥Intro to Programming using p5.js: • Start learning here!
    📄 Code of Conduct: github.com/CodingTrain/Code-o...
    🌐Help us caption and translate: ua-cam.com/users/timedtext_cs_p...
    🚩Suggest Topics: github.com/CodingTrain/Rainbo...
    👾Share your contribution: thecodingtrain.com/Guides/com...
    🔗 p5.js: p5js.org
    🔗 Processing: processing.org

КОМЕНТАРІ • 139

  • @patelmalavdev
    @patelmalavdev 5 років тому +24

    Who in the world even dislikes such a interesting video

    • @hiankun
      @hiankun 3 роки тому +1

      The patented noise method? ;-p

    • @joshm7490
      @joshm7490 Місяць тому

      I like mysteries, but not these mysteries

  • @ritwizsinha1261
    @ritwizsinha1261 3 роки тому +9

    Watching you makes me realize how many of aspects of computer science exists apart from frontend and backend

  • @kingykronous2284
    @kingykronous2284 5 років тому +47

    Thanks now I can have moving gray with Java.

  • @sirfrank6209
    @sirfrank6209 3 місяці тому +2

    I reaaly love the way you taught the code. Although some lessons are complicated and difficult to understand, I still want to learn from you. Thank you so much delivering such a good souce of knowledge for me. I am a small, develoing country and have an opportunity to study with from learnin resources on UA-cam. It is worth. Wish you!!!

  • @Gonras
    @Gonras 5 років тому +25

    When I watch you, I get happy, just because you have such a wunderfull and sunny way of presentation.
    Just watch The coding Train when beeing depressed and all problems are gone :)

    • @itaysror6591
      @itaysror6591 3 роки тому

      I get happy from seeing him teach, and then depressed trying to understand the content of his teachings

    • @Gonras
      @Gonras 3 роки тому +1

      @@itaysror6591 Just start coding and it will come over time.

  • @garychap8384
    @garychap8384 4 роки тому +12

    OMG! Noise-animated flies look SO real ...
    I'm taking their X and Y changes from their X,Y position into a 2D slice of gradient noise, with a tiny (unique) X,Y offset per fly. They fly around, but when they get close they chase each other for a brief moment. To spice up their movement I multiply their changes by a 'speed' looked up as their position in the noise, and they dart about playfully. The sudden speed changes look pretty good and keeps them interesting to watch.
    But here's the cool thing...
    When flies in a close pair are chasing each other - each looks up it's position in the 2D slice, the result they get is usually quite similar - but soon their offsets land them on different sides of a gradient peak, and they fly apart again.
    It's absolutely mesmerising to watch : ))))))
    Conversely, when each fly in a close pair are in a gradient valley, one will fly off ... but the other tries to head away but get redirected in a loop by the gradient. This causes one fly in the pair to suddenly fly off along a path... while the other hops about and then suddenly chases its partner! It's absolute genius!!!
    I'm changing the 2D slice with time, using a counter variable, so that their flight paths are not static.
    Of course, two flies at the same place, will end up synchronised forever, so ...
    I add a tiny little slowly oscillating offset (unique to each fly) into the Eval lookup, it stops them getting into lockstep... they'll then synchronise and desynchronise, performing some quite beautiful aerobatic chases, like real flies : )))) But they're never quite looking up in the same place, so they chase each other approximately, till the offset desynchronises them and they peel off from the chase.
    (I think incrementing anim by a tiny amount per fly would probably do the same thing but with less code)
    Anyway, it looks EXACTLY like real flies, occasionally playing 'chase'. I can't believe I've been playing with these new pets for an hour !
    Useless... sure, but stunningly organic.
    *EDIT: Writing this got me thinking...*
    Next I think I'll code them so that if they get slower than some low threshold, they'll set set a boolean 'isWalking' and stop multiplying by speed (and start ignoring any deltas less than abs 0.6). This should make them look like they've landed and are just casually walking about intermittently like flies do. Then... I'm going to use mouse proximity to get them to 'fly' again. Wait for them to settle one by one, and then 'annoy' them again ... ; )
    Also, I suppose a fast fly within proximity of a walking one, should also cause the walking one to switch back into flying mode too... causing the group to 'self aggitate'. So, I'll probably add that too.
    ... and finally, to keep it interesting, I might add a small random chance that a 'walking' fly will just switch into flying mode for no apparent reason, and upset it's neighbours.
    Oh... endless fun XD

  • @michakarteczka1436
    @michakarteczka1436 5 років тому +4

    I love your videos, you'r my inspiration and overall quality is better with every film. 👌🏼👌🏼

  • @davidbmar
    @davidbmar 2 роки тому +4

    I watch your videos on Perlin noise and in general i must say you rock. You have this awesome energy and just wanted to say your making a great contribution to the world. Great enthusiasm and way to inspire! You are making a difference in the world.

  • @sudoalex
    @sudoalex 5 років тому +2

    Cool! Thanks for the update!🙂😃
    You are a very good teacher!

  • @fareast1010
    @fareast1010 5 років тому +3

    Thank sir, I've waited it for a long time

  • @lucwisdom6681
    @lucwisdom6681 Рік тому

    this absolute legend allowed me to fix my broken noise function, thanks for the video!

  • @sweethomes674
    @sweethomes674 10 місяців тому

    Appreciate all these lessons and explanations 😊

  • @d_v_d1070
    @d_v_d1070 5 років тому +2

    seventeen minutes of a juicy piece explaining a coding technique in P3 with some pearls of small informational bits is so nice to absorb

  • @keff_cb
    @keff_cb 5 років тому +6

    Wow, Worley noise looks cool! I will look into it!

  • @Darkscream4
    @Darkscream4 4 роки тому +2

    Thank you so much for this video!
    I was wondering why it's pulsating and I thought I'm doing something wrong
    Now I know how to fix it :)

  • @rushikeshhiray03
    @rushikeshhiray03 5 років тому +80

    Could you Please do the 3d terrain in this method

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +44

      Coming soon!

    • @kushagra64
      @kushagra64 3 роки тому +1

      @@TheCodingTrain can you use 3d perlin (or simplex) noise to create a 3d terrain with caves and stuff

    • @Kitulous
      @Kitulous 3 роки тому +1

      @@kushagra64 2d noise with perlin worms would be better, cause 3d perlin noise would give you very weird terrain

  • @onkelhoy1
    @onkelhoy1 5 років тому +39

    Hey Dan, could you post a video of your lecture someday? Im really interested to see you in 'action' and hopefully someday I might even take a class from you!

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +22

      That's basically what these videos are!

  • @CodingWithUnity
    @CodingWithUnity 5 років тому

    The noise video are great! Really been enjoying them alot

  • @iBuzzinga
    @iBuzzinga 5 років тому +1

    Great video once more

  • @MrLemonsplash
    @MrLemonsplash 5 років тому +1

    You're the man, Dan

  • @WilsonFerguson
    @WilsonFerguson Рік тому +2

    I think it's also important to note that processing's built in noise function is really using fractal brownian motion to make the noise look more realistic. It layers together multiple layers of noise which is why it may look a bit grainier/bit more realistic than the smooth open simplex noise.

    • @tksmkd
      @tksmkd Рік тому

      A soma proporcional de vários valores aleatórios torna menos aleatório e mais 'natural' a medida que captura o universo da soma. E passamos a observar consequências de um mundo maior. Isso é bacana. Mas o desafio das diversas versões de algoritmos de noises é tentar capturar o máximo possível das dimensões fractais em tempo real, sem termos que gerar grandes massas de dados para representar cada pequena porção de uma coisa que tem seu significado num fenômeno maior.
      Isso gera discussões tão legais né? Eu li o livro do Mandelbrot em que ele começa falando do movimento browniano e confesso que desde que ele foi escrito já reli várias e várias vezes até essas ideias entrarem na cabeça. A coisa vai ter entrado de fato quando eu conseguir elaborar boas respostas pra justificar pras pessoas que os noises precisam ter uma lógica pra serem interpretadas pelo nosso cerebro como coisas 'naturais'. Até lá, ficarei usando 'natural' com aspas.

  • @thegermantomoeser
    @thegermantomoeser 3 роки тому

    Using the year to select the noise mode is a great idea. It's like an automatic history lesson while hackin some noise 😁

  • @azyfloof
    @azyfloof 5 років тому +7

    I loved that happy accident at 15:12! I went "woah!" as well :P Reminded me of Rorschach :P
    What other similar effects could you made from that? Could you make banded contours by clipping the values to say black white and two shades of grey? Maybe an RGB spectrum of six colours?

  • @PrismAnimates
    @PrismAnimates 5 років тому +3

    Thank you for making these videos! My downloads page is full of your videos cuz they are really good xD

  • @michalbotor
    @michalbotor 5 років тому

    would you consider to have a series of episodes devoted to the ways of integration of processing with photoshop?
    i love them both but sadly they feel like two seperate worlds for me right now.
    if i were to see you do a project in them both though, this would be a true game changer for me.

  • @technobabble7702
    @technobabble7702 5 років тому +20

    Can you show us how to implement the marching squares or marching cubes algorithm?

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +7

      Yes I want to do this one! Vote/suggest here: github.com/CodingTrain/Rainbow-Topics/issues

    • @Lars22
      @Lars22 3 роки тому +1

      The video on marching squares is now live.

  • @dbzlinkinpark99
    @dbzlinkinpark99 3 роки тому

    did anyone else notice or feel and odd connection to Dan saying 1983 a lot? it caught my attention because it reminded of the 1984 Apple Macintosh commercial. it just interest me that year after Perlin noise came out, Apple releases a commercial in reference to the book 1984. there is probably no correlation between these two events, yet it's still pretty interesting

  • @karamazov9610
    @karamazov9610 2 роки тому

    I aspire to be as happy as you look doing this.

  • @SuperToughnut
    @SuperToughnut 3 роки тому

    I wish this guy was my neighbor along with all the other smart people I want as my neighbors. It'd be like a super community of problem solvers and inventors. Every day would be exciting!

  • @Draconic74
    @Draconic74 5 років тому +1

    Oh good, I was actually looking into this recently when i noticed the weird behavior of 3d Perlin noise.

  • @JJCUBER
    @JJCUBER 5 років тому +3

    So how come they can’t add a simplexnoise class or function in processing, it wouldn’t interfere with old stuff and would allow the option for new stuff (and they can warn people of the normal noise being deprecated, but still usable).

  • @rukna3775
    @rukna3775 5 років тому +1

    Can u make the library of Babel? Shown by VSAUCE

  • @rickybloss8537
    @rickybloss8537 5 років тому

    Please do a video on worley noise It looks so cool

  • @abdulhadilababidi8052
    @abdulhadilababidi8052 5 років тому +1

    Wonderful! 😍
    Can you create tutorials about fluid simulation and how to display liquid on the screen please?

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +1

      You can check out this video thecodingtrain.com/CodingChallenges/132-fluid-simulation.html

  • @PHENN7
    @PHENN7 4 роки тому

    Any idea why pixelDensity(2); makes this not work on a high-res display? It scales it as half height, and doubles the entire sketch next to itself.

  • @NolleEveraert
    @NolleEveraert 5 років тому +1

    Can you explain Q-learning in processing please?

  • @Jake4D
    @Jake4D 10 місяців тому

    Did you ever do that 2D Noise loop using 4 Dimensions? I couldn't find it if you did.

  • @IRWBRW964
    @IRWBRW964 5 років тому

    Can you do interpolations using the sinkhorn distance?

  • @lorforlinux
    @lorforlinux 5 років тому

    you are awesome

  • @slyer7695
    @slyer7695 5 років тому +8

    Love from Italy!!!! ❤️❤️❤️❤️ 🇮🇹 #LoveFromItaly10

  • @emrek1
    @emrek1 3 роки тому +1

    The method explained in the archive link actually is "value noise", not perlin noise.

  • @tksmkd
    @tksmkd Рік тому

    só pra constar: perlin noise é o que está por trás de melhorias de coisas como particles, que talvez vcs se interessem. (vcs que buscam por design de jogos ou performance em games com grandes quantidades de efeitos "realísticos")
    Dado que com particles a gente calcula a posição de um determinado conjunto de coisas muito pequenas, como poeira, partículas de fumaça ou mesmo o comportamento de cada indivíduo de uma multidão vista de longe, definindo características em comum a objetos em contextos variáveis
    Com algoritmos COMO perlin noise fazemos isso em blocos. calculando grandes massas de valores a partir do que eles tem em comum. O que chamamos de 'naturalidade' é justamente aquele comportamento que a massa de dados tem que ter para parecer terem sido geradas pelo mesmo fenômeno como ser movida pelo mesmo vento, ter batido na mesma pedra, ser iluminado pelo mesmo sol etc

  • @bastianroling1430
    @bastianroling1430 5 років тому +1

    Hi Dan im an 14 y/o boy from germany and im programming since im 11. I can only thank you a lot allready because you taught me almost all I know about programming with your videos.
    And right now im trying to programm rock paper scissors in processing an so far it looks good. The basic idea behind it works but im stuck with the score element wich I want to increase every time the player has won a game. In theory it looks something like this :

    if (playerWon){
    score++;
    }
    and after that i display the score on the screen. But the score doesnt only increase by one because its in a loop... Do you have any advice for me??
    I would be soo thankfull if you could answer my question. Keep up the great work man I love your vids.

    • @ABaumstumpf
      @ABaumstumpf 5 років тому

      We would need to see a bit more of the code - like what the loop does and when is "playerWon" set to true.
      have you maybe forgotten to reset that variable to false afterwards?

    • @bastianroling1430
      @bastianroling1430 5 років тому +2

      @@ABaumstumpf Yes I did thank you very much ;)

  • @Weckacore
    @Weckacore 5 років тому

    Challenge where you make the whispy sphere thing?

  • @Kitulous
    @Kitulous 5 років тому +2

    I hope the developers of Processing listen to Dan's thoughts and they add various types of noises to noiseType function

    • @ABaumstumpf
      @ABaumstumpf 5 років тому

      Would be great.
      And also they should update the description in the reference - cause it is not using perlin noise.

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +1

      I think it would make sense to maybe try the idea out in a separate library first? We could make this a community project. Too many things to do, but I'd love to work on this!

    • @ABaumstumpf
      @ABaumstumpf 5 років тому +1

      ​@@TheCodingTrain There already is "noiseDetail" - adding another "noiseType" would be simple, as argument it gets an enum specifying what type of noise to produces.
      That way you could easily use different types of noise and use them in existing codebase.

  • @AerialImagery
    @AerialImagery 4 роки тому +1

    This doesn't have the same appearance as the native Processing noise because there is no octave summing taking place.
    See cmaher.github.io/posts/working-with-simplex-noise/
    The example is written for Mr Perlin's version but is easily modified for OpenSimplex noise and produces a result that is to all intents and purposes indistinguishable from the Processing version apart from the lack of repeating artefacts.

  • @vincentcleaver1925
    @vincentcleaver1925 4 роки тому

    Did you ever do anything with Worley noise?

  • @zemoxian
    @zemoxian Рік тому

    It’s 2022 now. I’m wondering if the Simplex noise patent still holds or can it be used freely now.

  • @thiagom6619
    @thiagom6619 4 роки тому

    Is it possible to make it a screensaver? I mean, save the program to use as screen saver on Linux.

  • @IndrajitRajtilak
    @IndrajitRajtilak 2 роки тому

    What are some real-world use-cases for simplex noise and Perlin noise?

  • @mrkjsmt
    @mrkjsmt 8 місяців тому

    I can't possibly get this to work. My Java knowledge is far too short to understand how to call the newer OpenSimplex2S library and how to get the noise values.. Please.. HELP!!

  • @asmrdonk3951
    @asmrdonk3951 5 років тому +4

    Does anyone know which algorithm the 'fractal noise' effect in after effects uses?

    • @felipegutierrez3477
      @felipegutierrez3477 4 роки тому

      No idea what you refer to, but generally fractal noise or fractional brownian motion is a loop in which noises are stacked at different frequencies and amplitudes.

  • @mbbostanci
    @mbbostanci 5 років тому

    Is there a Daniel Shiffman for openFrameworks?

  • @jayt8610
    @jayt8610 2 роки тому +1

    “ComputTORR!” 5:31

  • @Flackon
    @Flackon 5 років тому

    Couldn't they keep the original noise method and additionally implement a simplex noise method in processing/p5js?
    In other words: why not both?

  • @Brahvim
    @Brahvim 3 роки тому

    "Stefan *Gustaffson* "
    *Linkoping University, Sweden.*
    This reminds me of something....

  • @roganjosh6220
    @roganjosh6220 2 роки тому

    if i'm not mistaken, it's impossible to patent an algorithm, rather only the implementation. so surely using the algorithm to create an alternative yet identical implementation is perfectly legal?

  • @AndreaDiCenta
    @AndreaDiCenta Рік тому

    Were i found a simple noise generetor? Like your

  • @diogoalmeida762
    @diogoalmeida762 5 років тому +1

    Hi!
    i'm making a litlle game in processing...But i got a problem that is i dont know how to set the coordinates to be the same on every monitor type using fullscreen...like in a 1920x1080 the coordinates are different from a 1600 x 900.
    Can anyone help?

    • @simeondermaats
      @simeondermaats 5 років тому +2

      Maybe you could make it work using translate(width / 2, height / 2) so that (0, 0) is always the center of the screen

    • @iBuzzinga
      @iBuzzinga 5 років тому +3

      You could translate to a variable point, like width/2, height/2 and base your coordinates from that point

    • @Derbucher
      @Derbucher 5 років тому +1

      You might get some great help at stackoverflow.

    • @diogoalmeida762
      @diogoalmeida762 5 років тому

      @@Derbucher I'm going to check that

  • @nasso_
    @nasso_ 5 років тому +7

    2:24 damn i thought you were gonna craft something

    • @inx1819
      @inx1819 3 роки тому

      "wtf is the recipe for a piston"

  • @all-roundtech4872
    @all-roundtech4872 5 років тому +1

    In one day this man gets 500 likes

  • @RogieWoah
    @RogieWoah 5 років тому

    You should make a Minecraft-like terrain using the Perlin Noise function

  • @dragonslayer-gq9wo
    @dragonslayer-gq9wo 5 років тому +1

    I am having trouble with block to block detection in processing I watched the video and it didn’t help me😢

  • @Derbucher
    @Derbucher 5 років тому +1

    The mistake at the 15:12 mark reminds me of Rorschach's mask

  •  5 років тому +1

    Please make tutorial how you implement p5 project into react

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +1

      Well, this may ultimately disappoint you but... ua-cam.com/video/OvpbTeAYQEU/v-deo.html

  • @kustomweb
    @kustomweb 5 років тому +1

    Looks like the surface of the Sun, bubbley mess. Nice.

  • @name_here___4070
    @name_here___4070 5 років тому +1

    Just add a simplex() function in Processing for simplex noise.

  • @mickeym.9721
    @mickeym.9721 Рік тому +3

    Btw Ken Perlin’s Patent for simplex noise has expired now !

  • @couch9416
    @couch9416 5 років тому +1

    Your videos are also kinda 1983 xD (just a joke not saying that the vids are bad, they are great !)

    • @TheCodingTrain
      @TheCodingTrain  5 років тому +1

      I could not agree more!

    • @keff_cb
      @keff_cb 5 років тому +1

      Yup, that's one of the best things about the channel! :P

  • @holocenesage
    @holocenesage 3 роки тому

    How long does patents usually last? 🤔 it's been past 10 years, I feel like simplex should be public.

    • @oivinf
      @oivinf 3 роки тому +1

      He shows it on screen around 5:50 or so, it's expiring next January

  • @linuxguy1199
    @linuxguy1199 5 років тому

    So I implemented perlin noise in assembly now I should implement OpenSimplex noise in assembly

    • @SpringySpring04
      @SpringySpring04 2 роки тому

      Ouch, assembly. That must be painful to code in

  • @aryamankejriwal5959
    @aryamankejriwal5959 5 років тому +1

    You could use this to make a cow skin graphic! Just round everything less than 0 to 0 and everything else to 1

  • @OrangeC7
    @OrangeC7 5 років тому +1

    omg worley noise is phenominal

  • @DalecarliaAstro
    @DalecarliaAstro 5 років тому +2

    Can you look into Cuda or OpenCL?

  • @soejrd24978
    @soejrd24978 5 років тому +2

    I recently saw a video on how water erodes the surface of a mountain/terrain. It was a real incredible video, and would love for YOU to make a video on it. I think it's really doable in p5. Here's the original video ua-cam.com/video/eaXk97ujbPQ/v-deo.html

  • @naveensd101
    @naveensd101 Рік тому

    we stared of with 1D perlin noise. Then went to 2D. I wonder can we generate n dimensional Perlin noise.

  • @lorforlinux
    @lorforlinux 5 років тому

    muaah

  • @mickyr171
    @mickyr171 2 роки тому +1

    Why dont you implement atleast a new function called simplex? that way those that have projects made with noise can choose to upgrade to using simplex or not

  • @jkoolish
    @jkoolish 5 років тому

    Was the classic Perlin noise not patented?

  • @BryceTheGrand
    @BryceTheGrand 5 років тому

    Is anyone else having an issue where the seed is always the same?

  • @gapi274
    @gapi274 5 років тому

    it looks like a tv program on old TV which didnt work because of your location

  • @HossynAssghary
    @HossynAssghary 5 років тому +2

    Hahaa hello 💙💛💜💚❤💙💛💜💚❤😜 🌈

  • @justiceforsethrichwwg1wga160
    @justiceforsethrichwwg1wga160 5 років тому

    Beard game is strong af

  • @vadertaner
    @vadertaner 2 роки тому

    my noise is not moving...help?

  • @toastyPredicament
    @toastyPredicament 2 роки тому

    Today is screwed
    . Have a nice day

  • @DrSpooglemon
    @DrSpooglemon 3 роки тому

    Has anyone ever seen Daniel and Babish at the same time?
    Daniel looks like Babish put on a wig and glasses. Coding with Babish.

  • @terroshak
    @terroshak 2 роки тому

    13:50 PRECISION

  • @BMHeades
    @BMHeades 2 роки тому

    anyone came here for the flow field but didn't find it?

  • @BUSHhoehh
    @BUSHhoehh 5 років тому +1

    Reminds me of the skyrim cut scene

  • @hrodvithit
    @hrodvithit 5 років тому

    I love coding, I LOVE using processing, but for some reason noise just doesn't resonate with my brain waves. Dan is my lord and saviour for all things Processing.

  • @nippi053
    @nippi053 5 років тому +1

    Worley noise looks creepy

  • @blueyay
    @blueyay 5 років тому +4

    First?
    Edit: OMG! I am....
    Gimme a heart....

    • @asherhaun
      @asherhaun 4 роки тому

      27,972th?
      OMG! I am...
      Gimme a heart...

  • @VaVathana-co3nh
    @VaVathana-co3nh 5 років тому

    Third

  • @efai
    @efai 5 років тому

    what was that all about ? I don't get it..

    • @anthonytonev1357
      @anthonytonev1357 5 років тому

      Talks about a free version of an algorithm that is used to create special effects in movies.

  • @ratdn
    @ratdn 4 роки тому

    dude just took a dump on ken when releasing opensimplex

  • @sayanghosh6996
    @sayanghosh6996 5 років тому +2

    The website of a computer graphics researcher is a plain HTML.
    Irony? 😂😂

  • @genevaleerobles
    @genevaleerobles Рік тому

    noiseMode(1983) lmaoo

  • @SuperToughnut
    @SuperToughnut 3 роки тому +4

    I just realized I am not a very happy person.

  • @whocares4598
    @whocares4598 3 роки тому

    wow you look like you are in you're mid 20's