Notebook - Welcome to Notebook

Contact/Report Bugs
You can contact me at: bkenwright@xbdev.net












Perlin Noise Example animation scrolling let Perlin new function private helper functions function fade t return t t t t t 6 15 10 function lerp t a b return a t b a function grad hash x y z let h hash 15 CONVERT LO 4 BITS OF HASH CODE let u h 8 x y INTO 12 GRADIENT DIRECTIONS v h 4 y h 12 h 14 x z return h 1 0 u u h 2 0 v v function scale n return 1 n 2 perlin noise member function this noise function x y z let p new Array 512 let permutation 151 160 137 91 90 15 131 13 201 95 96 53 194 233 7 225 140 36 103 30 69 142 8 99 37 240 21 10 23 190 6 148 247 120 234 75 0 26 197 62 94 252 219 203 117 35 11 32 57 177 33 88 237 149 56 87 174 20 125 136 171 168 68 175 74 165 71 134 139 48 27 166 77 146 158 231 83 111 229 122 60 211 133 230 220 105 92 41 55 46 245 40 244 102 143 54 65 25 63 161 1 216 80 73 209 76 132 187 208 89 18 169 200 196 135 130 116 188 159 86 164 100 109 198 173 186 3 64 52 217 226 250 124 123 5 202 38 147 118 126 255 82 85 212 207 206 59 227 47 16 58 17 182 189 28 42 223 183 170 213 119 248 152 2 44 154 163 70 221 153 101 155 167 43 172 9 129 22 39 253 19 98 108 110 79 113 224 232 178 185 112 104 218 246 97 228 251 34 242 193 238 210 144 12 191 179 162 241 81 51 145 235 249 14 239 107 49 192 214 31 181 199 106 157 184 84 204 176 115 121 50 45 127 4 150 254 138 236 205 93 222 114 67 29 24 72 243 141 128 195 78 66 215 61 156 180 for let i 0 i 256 i p 256 i p i permutation i var X Math floor x 255 FIND UNIT CUBE THAT Y Math floor y 255 CONTAINS POINT Z Math floor z 255 x Math floor x FIND RELATIVE X Y Z y Math floor y OF POINT IN CUBE z Math floor z let u fade x COMPUTE FADE CURVES v fade y FOR EACH OF X Y Z w fade z let A p X Y AA p A Z AB p A 1 Z HASH COORDINATES OF let B p X 1 Y BA p B Z BB p B 1 Z THE 8 CUBE CORNERS return scale lerp w lerp v lerp u grad p AA x y z AND ADD grad p BA x 1 y z BLENDED lerp u grad p AB x y 1 z RESULTS grad p BB x 1 y 1 z FROM 8 lerp v lerp u grad p AA 1 x y z 1 CORNERS grad p BA 1 x 1 y z 1 OF CUBE lerp u grad p AB 1 x y 1 z 1 grad p BB 1 x 1 y 1 z 1 function clamp x lo hi return Math min Math max x lo hi let canvas document createElement canvas canvas width 256 canvas height 256 document body appendChild canvas let context canvas getContext 2d var canvasData context getImageData 0 0 canvas width canvas height dt 0 0 setInterval function dt 2 0 for var x 0 x canvas width x for var y 0 y canvas height y var idx x y canvas width 4 var c Perlin noise x dt canvas width 5 0 y canvas height 5 0 0 var n Perlin noise x dt canvas width 3 0 y canvas height 3 0 0 c clamp Math pow c 6 0 0 0 25 4 0 canvasData data idx 0 c 255 canvasData data idx 1 n 255 canvasData data idx 2 c 255 canvasData data idx 3 255 alpha context putImageData canvasData 0 0 10 console log ready Perlin Noise Example regions let Perlin new function private helper functions function fade t return t t t t t 6 15 10 function lerp t a b return a t b a function grad hash x y z let h hash 15 CONVERT LO 4 BITS OF HASH CODE let u h 8 x y INTO 12 GRADIENT DIRECTIONS v h 4 y h 12 h 14 x z return h 1 0 u u h 2 0 v v function scale n return 1 n 2 perlin noise member function this noise function x y z let p new Array 512 let permutation 151 160 137 91 90 15 131 13 201 95 96 53 194 233 7 225 140 36 103 30 69 142 8 99 37 240 21 10 23 190 6 148 247 120 234 75 0 26 197 62 94 252 219 203 117 35 11 32 57 177 33 88 237 149 56 87 174 20 125 136 171 168 68 175 74 165 71 134 139 48 27 166 77 146 158 231 83 111 229 122 60 211 133 230 220 105 92 41 55 46 245 40 244 102 143 54 65 25 63 161 1 216 80 73 209 76 132 187 208 89 18 169 200 196 135 130 116 188 159 86 164 100 109 198 173 186 3 64 52 217 226 250 124 123 5 202 38 147 118 126 255 82 85 212 207 206 59 227 47 16 58 17 182 189 28 42 223 183 170 213 119 248 152 2 44 154 163 70 221 153 101 155 167 43 172 9 129 22 39 253 19 98 108 110 79 113 224 232 178 185 112 104 218 246 97 228 251 34 242 193 238 210 144 12 191 179 162 241 81 51 145 235 249 14 239 107 49 192 214 31 181 199 106 157 184 84 204 176 115 121 50 45 127 4 150 254 138 236 205 93 222 114 67 29 24 72 243 141 128 195 78 66 215 61 156 180 for let i 0 i 256 i p 256 i p i permutation i var X Math floor x 255 FIND UNIT CUBE THAT Y Math floor y 255 CONTAINS POINT Z Math floor z 255 x Math floor x FIND RELATIVE X Y Z y Math floor y OF POINT IN CUBE z Math floor z let u fade x COMPUTE FADE CURVES v fade y FOR EACH OF X Y Z w fade z let A p X Y AA p A Z AB p A 1 Z HASH COORDINATES OF let B p X 1 Y BA p B Z BB p B 1 Z THE 8 CUBE CORNERS return scale lerp w lerp v lerp u grad p AA x y z AND ADD grad p BA x 1 y z BLENDED lerp u grad p AB x y 1 z RESULTS grad p BB x 1 y 1 z FROM 8 lerp v lerp u grad p AA 1 x y z 1 CORNERS grad p BA 1 x 1 y z 1 OF CUBE lerp u grad p AB 1 x y 1 z 1 grad p BB 1 x 1 y 1 z 1 function clamp x lo hi return Math min Math max x lo hi let canvas document createElement canvas canvas width 256 canvas height 256 document body appendChild canvas let context canvas getContext 2d var canvasData context getImageData 0 0 canvas width canvas height dt 0 0 setInterval function dt 2 0 for var x 0 x canvas width x for var y 0 y canvas height y var idx x y canvas width 4 var c Perlin noise x dt canvas width 8 0 y canvas height 8 0 0 c clamp Math pow c 4 0 0 0 25 4 0 if c 0 5 c 0 6 c 1 0 else c 0 0 canvasData data idx 0 c 255 canvasData data idx 1 c 255 canvasData data idx 2 c 255 canvasData data idx 3 255 alpha context putImageData canvasData 0 0 10 console log ready

y Perlin Noise Example regions let Perlin new function private helper functions function fade t return t t t t t 6 15 10 function lerp t a b return a t b a function grad hash x y z let h hash 15 CONVERT LO 4 BITS OF HASH CODE let u h 8 x y INTO 12 GRADIENT DIRECTIONS v h 4 y h 12 h 14 x z return h 1 0 u u h 2 0 v v function scale n return 1 n 2 perlin noise member function this noise function x y z let p new Array 512 let permutation 151 160 137 91 90 15 131 13 201 95 96 53 194 233 7 225 140 36 103 30 69 142 8 99 37 240 21 10 23 190 6 148 247 120 234 75 0 26 197 62 94 252 219 203 117 35 11 32 57 177 33 88 237 149 56 87 174 20 125 136 171 168 68 175 74 165 71 134 139 48 27 166 77 146 158 231 83 111 229 122 60 211 133 230 220 105 92 41 55 46 245 40 244 102 143 54 65 25 63 161 1 216 80 73 209 76 132 187 208 89 18 169 200 196 135 130 116 188 159 86 164 100 109 198 173 186 3 64 52 217 226 250 124 123 5 202 38 147 118 126 255 82 85 212 207 206 59 227 47 16 58 17 182 189 28 42 223 183 170 213 119 248 152 2 44 154 163 70 221 153 101 155 167 43 172 9 129 22 39 253 19 98 108 110 79 113 224 232 178 185 112 104 218 246 97 228 251 34 242 193 238 210 144 12 191 179 162 241 81 51 145 235 249 14 239 107 49 192 214 31 181 199 106 157 184 84 204 176 115 121 50 45 127 4 150 254 138 236 205 93 222 114 67 29 24 72 243 141 128 195 78 66 215 61 156 180 for let i 0 i 256 i p 256 i p i permutation i var X Math floor x 255 FIND UNIT CUBE THAT Y Math floor y 255 CONTAINS POINT Z Math floor z 255 x Math floor x FIND RELATIVE X Y Z y Math floor y OF POINT IN CUBE z Math floor z let u fade x COMPUTE FADE CURVES v fade y FOR EACH OF X Y Z w fade z let A p X Y AA p A Z AB p A 1 Z HASH COORDINATES OF let B p X 1 Y BA p B Z BB p B 1 Z THE 8 CUBE CORNERS return scale lerp w lerp v lerp u grad p AA x y z AND ADD grad p BA x 1 y z BLENDED lerp u grad p AB x y 1 z RESULTS grad p BB x 1 y 1 z FROM 8 lerp v lerp u grad p AA 1 x y z 1 CORNERS grad p BA 1 x 1 y z 1 OF CUBE lerp u grad p AB 1 x y 1 z 1 grad p BB 1 x 1 y 1 z 1 function clamp x lo hi return Math min Math max x lo hi let canvas document createElement canvas canvas width 256 canvas height 256 document body appendChild canvas let context canvas getContext 2d var canvasData context getImageData 0 0 canvas width canvas height dt 0 0 setInterval function dt 2 0 for var x 0 x canvas width x for var y 0 y canvas height y var idx x y canvas width 4 var c Perlin noise x dt canvas width 8 0 y canvas height 8 0 0 c clamp Math pow c 4 0 0 0 25 4 0 if c 0 5 c 0 6 c 1 0 else c 0 0 canvasData data idx 0 c 255 canvasData data idx 1 c 255 canvasData data idx 2 c 255 canvasData data idx 3 255 alpha context putImageData canvasData 0 0 10 console log ready

3dplot
a4print
about
acejs
acejs2
acejs3
aessecurity
angularjs
animbackgroundimage
aseformat
assert
asteroidsjs
backgrounds01
backgrounds02
backgrounds03
barnsleyfern
base26
base64
bib
binary
bodypix
bouncy
box2dweb
breakoutjs
browserversion
buslanes
busybutton
bvhreader
calendar
canvas
canvas2
canvas3
canvasmandelbrot
canvasmandelbrot2
canvasnumbers
canvaszoom
capsule
changingimages
chatgptusingopenai
chatgptusingopenai2
chatgptusingopenai3
checkboxtoggle
chinesetiles
classes
classfeatures
clipboardbutton
clonenode
codedropdown
codemirror
codemirror2
collada
colorpick
columnresizer
contextmenu
convnet
cookiebanner
countdown
countdown2
countdown3
crop
css3dbarchart
css3dbarchart2
css3dbook
css3dscene
csscube
csscube2
csscube3
csscubevideos
cssfilelist
csshas
csspulse
cssresizeaspect
cssspin
csszooming
csvtoarray
customcheckbox
d3datamap
d3js
d3js10
d3js11
d3js2
d3js3
d3js4
d3js5
d3js6
d3js7
d3js8
d3js9
d3jsanimatedgrid
d3jsarctransition
d3jsarctransition2
d3jsaxis
d3jsaxischanging
d3jsbars
d3jsbrushing
d3jsbuslanes
d3jsbuslanes2
d3jscalendar
d3jscheat
d3jsclock
d3jscloudmap
d3jscogs
d3jscolors
d3jscovid
d3jscovid2
d3jscovid3
d3jsdashboard
d3jsdashboard2
d3jsdashboard3
d3jsdatakeyfunction
d3jsdensity
d3jsdragresizing
d3jsdragresizing2
d3jseach
d3jsease
d3jsevents
d3jsflower
d3jsforcegroups
d3jsforces
d3jsforces2
d3jsfractaltree
d3jsgeo
d3jsgroupbars
d3jsgroups
d3jsheatmap
d3jshex
d3jshierarchies
d3jshierarchies2
d3jshistogram
d3jshistogram2
d3jshistogram3
d3jshistogram4
d3jsinterpolate
d3jsjoin
d3jskmean
d3jskmean2
d3jsline
d3jsline2
d3jsline3
d3jsline4
d3jslinetransition
d3jslinetransition0
d3jslinetransition2
d3jsmaplocations
d3jsmaps
d3jsmaps2
d3jsmaps3
d3jsmisc
d3jsmisc2
d3jsmodule
d3jsmodulecolor
d3jsmultistyles
d3jsnobel
d3jsoverlappinggraphs
d3jspanel
d3jspie
d3jspieinterpolate
d3jssankey
d3jssankey2
d3jsscatter
d3jsshapes
d3jsslider
d3jsspending
d3jsspending2
d3jsspiralplot
d3jsspirograph
d3jssquare
d3jsstack
d3jsstackedbar
d3jsstackedbar2
d3jssunburst
d3jssunmoon
d3jssvglines
d3jssymbols
d3jstimelines
d3jsuk
d3jsvoronoi
d3scatterplot
d3timeline
d3timeline2
datalist
datamuse
date
dblclickhighlight
deviceorientation
dictionaryapi
dockermenu
doodlepad
downloadgif
dragdroplistitems
dragrotateresizediv
dragrotateresizediv2
dragrotateresizediv3
dragrotateresizediv4
dragrotateresizefontsize
dragselectbrush
drawlinesdiv
dropdown
dualquaternionimages
dynamicgrid
easefunctions
easeinterpolate3dplots
echart
echart2
echart3
encapsulation
epubviewer
errorstack
excalidraw
excalidraw2
excalidraw3
excalidraw5
expandable
faker
fetchplus
fileupload
fixedtopbar
fonts
fonts2
footerbar
fractalmaze
fractalmaze2
fractalnoiseimage
fractals
fractals2
fractaltree
freesvg
fresnel
froggerjs
gantt
gifgiphyapi
gifhex
gltffromscratch
gradients
griditems
griditems2
griditems3
griditems4
gridworms
heat
hexview
hexview2
highlight
icons
icons2
iframes
ik
imagetracertosvg
imgur
inputfile
invadersjs
ipynb
ipynb2
ipynb3
ipynb4
isbn13
isbn2
jpghex
jquery
jquery2
jqueryui
jqueryui2
jsdraganddrop
jslint
jsobfuscate
jsraytracer
jstree
jstree2
jszip
jszipimages
jszipread
keyframes
l2dwidget
lda
leftmenu
less
less2
lineargradientimage
linenumbers
loadimagefromfile
makepdf
maps
markdown
markdown2
markdownalerts
markdownalerts2
markdownbookmarks
markovimage
markovpixelblocks
mathjax
matrices
matsandvects
mazegamejs
md2tex
metrotiles
metrowindows
milestones
misc
misc2
modules
myipdetails
neataptic
networkstructures
networkstructures2
number
obj
objtojson
openaiimages
opencv
opencv2
opencv3
opencv4
opencv5
outline
p2
p5fractalleaf
p5fractalshape
p5js
p5js2
p5js3
p5jsanimatedcover
p5mengercube
p5snowflakes
palindrome
panel
parallax
paste
paste2
pasteimgfromurl
pdfjs
pdfjs2
pdfkit
pdfkit2
pdfkit3
pdfkit4
pdfkit5
pdfkit6
pdfmake
pdfmake2
pdfmake3
pdfmake4
pdfmake5
pdfmake6
perlin
perlin2
perlin3
perspective
pexels
playground
plotly
plotlynoise
plotlyranddist
plyloader
plyloader2
pngtxtencoder
pongjs
pptxgenjs
prettycode
prism
prn
problems
progress
pseudorandom
px2svg
python
quotes
racergame
random
randomprofilepatterns
randomstring
rating
rayambient
raymonte
raymonteprogressive
raymonteprogressive2
raymontewarmstart
reexpcross
reexpcross2
regex
regexbib
regexpfixbib
regexpmultiline
repeatwordsregexp
resizabletable
resizabletable2
revealjs
revealjs2
revealjsmulti
ritalanguage
ritalanguage2
ritalanguage3
rotateimg
rough
rsapublicprivatekeys
rss
rss2
sankey
scrappingsvg
scrolltext
scrolltext2
scrollwidth
sdfboxinboxtwist
sdfhollowbox
setintervalexception
shareurl
shuffle
sidecomment
similarity
simplehighlighter
simpleplatformgamejs
sinecanvas
sliderpopout
slides
smileys
snowfall
snowman
sound
soundsignal
sphererayintersection
springs
sqljs
steganography
stereogram
stringmatching
svg
svgchaos
svgdragresize
svgdragresize2
svgdragresize3
svgdragrotate
svgdrawing
svglines
svglines2
svglines3
svglines4
svglines5
svglinesmandelbrot
svgpathsdragrotate
svgpathsdragrotateresize
svgpie
svgpie2
svgpie3
svgpiepath
svgpiepath2
svgrandomfaces
symbols
synaptic
synaptic2
synonyms
tablerotatecells
tablerotatecells2
tablerotatecells3
tablerotatecells3b
tablerotatecells4
tables
tablezebra
tabularjs
tabularjs2
tabulatordownload
tagcanvas
tensorflowgan
tensorflowjs
tensorflowjsbasic
tensorflowjscnn
tensorflowjssinewave
tensorflowjssound
tensorflowmobilenet
tetrahedronfractal
tetrahedronfractalfolding
tetris
textarea
textareaauto
textareadiv
textareadiv2
textmaskimage
theirorthere
thesaurus
threejs
threejs2
threejs3
threejs4
threejsgltf
threejstokyo
tiles
toaster
tooltip
transition
transitionexpandabledropdown
treeview
treeview2
tricks
tshirt
tshirt2
tshirt3
turningpages
unsplash
urlblob
urlblob2
userdefinepoints
vector
videos
videos2
visualsort
vue
w2ui
w2uientertextdialog
webcam
webgl
webgl2
webgl3
webgl4
webgl5
webglbasic1
webglbasic2
webglcube
webglfov
webglfrustum
webgljson
webglleaves
webgllighting
webglorthographic
webglpoints1
webglpoints2
webglpoints3
webglsquare
webgltexture1
webgltexture2
webgltexture3
webgltransforms
webgltriangle
webgpu
webgpu10
webgpu11
webgpu12
webgpu13
webgpu14
webgpu15
webgpu16
webgpu17
webgpu2
webgpu3
webgpu4
webgpu5
webgpu6
webgpu7
webgpu8
webgpu9
webgpubars
webgpubuffers
webgpubuffers2
webgpucellnoise
webgpuclouds
webgpuclydescope
webgpucompute
webgpucubemap
webgpucubemap2
webgpudeferred
webgpudepth
webgpudof
webgpudrops
webgpuetha
webgpufire
webgpufractalcubes
webgpuglassrain
webgpugltf
webgpugltf2
webgpugrass
webgpugrid
webgpukernel
webgpukleinian
webgpulabupdates
webgpulighting
webgpumandelbrot
webgpumeta3d
webgpumetaballs
webgpumouse
webgpunoise
webgpunormalmapping
webgpuobj
webgpuparallax
webgpuparallax2
webgpuparallax3
webgpuparallaxshadow
webgpuparallaxshadow2
webgpupixel
webgpuquad
webgpuray1
webgpuraytracing
webgpuraytracing2
webgpushadowmaps
webgpushadowmaps2
webgpusierpinski2d
webgpusierpinski3d
webgpusinusoid
webgpussao
webgpustadiumobj
webgpuswirl
webgputestpipe3
webgputoon
webgputopology
webgputt
webgpuvolcloud
webgpuwater
webgpuwireframe
webgpuwireframe2
webpcanvas
webworkers
webxr
webxr2
wiggly
wikipedia