Log In  

Cart #58291 | 2018-10-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

P#58292 2018-10-23 12:44 ( Edited 2018-10-25 23:39)

you can find me:
creatorx.blog

https://creatorx.blog/2018/10/23/pico8-1d-perlin-noise/

posting some stuff using perlin noise!

P#58293 2018-10-23 12:48 ( Edited 2018-10-23 16:48)

You are just drawing peaks ?

cls()
y=64 a=0
for i=0,127 do
  rectfill(i,y,i,127)
  y+=sin((a)/50)
  if rnd()<.5 then
    a-=1
  else
    a+=1
  end
end
P#58298 2018-10-23 15:56 ( Edited 2018-10-23 19:56)

I'm drawing linear interpolation between points.

P#58427 2018-10-25 19:39 ( Edited 2018-10-25 23:39)

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-04-20 14:03:11 | 0.009s | Q:17