Notebook - Welcome to Notebook

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












document body style minHeight 600 let canvas document createElement canvas document body appendChild canvas canvas width canvas height 500 canvas id canvas Helper function for fract fractional part function myfract x return x Math floor x Helper function for dot product function dot v1 v2 return v1 x v2 x v1 y v2 y Random function function random uv return myfract Math sin dot uv x 12 9898 y 78 233 43758 5453 Smooth random function function randomsmooth st Integer grid coordinates let i x Math floor st x 3 0 y Math floor st y 3 0 Fractional coordinates within the grid cell let f x myfract st x 3 0 y myfract st y 3 0 Sample four corners of the cell using the random function let a random i let b random x i x 1 0 y i y let c random x i x y i y 1 0 let d random x i x 1 0 y i y 1 0 Smooth the interpolation factor f for smoother transition between values f x f x f x 3 0 2 0 f x f y f y f y 3 0 2 0 f y Bilinear interpolation between corners let x1 a 1 0 f x b f x let x2 c 1 0 f x d f x let y1 x1 1 0 f y x2 f y return y1 const simplex3 a b c c Math sin c 0 5 Generate smooth random values for each 3D coordinate direction let x0 randomsmooth x a y b let x1 randomsmooth x a c 0 03 y b c 0 003 let y0 randomsmooth x a 0 19392323 y b 2 3929323 let y1 randomsmooth x a c 0 19392323 y b c 2 3929323 Interpolate along c axis let xc x0 x1 x0 c let yc y0 y1 y0 c Interpolate between results return xc yc xc c function valid val if val undefined throw invalid value if isNaN val throw NaN value if val 9999999 throw number warning range if val 9999999 throw number warning range Constructor for vec2 function vec2 x y this x x this y y valid this x valid this y return this vec2 prototype float32 function let r new Float32Array 2 r 0 this x r 1 this y return r vec2 operations vec2 add function v0 v1 return new vec2 v0 x v1 x v0 y v1 y vec2 sub function v0 v1 return new vec2 v0 x v1 x v0 y v1 y vec2 scale function v0 s return new vec2 v0 x s v0 y s vec2 dot function v0 v1 return v0 x v1 x v0 y v1 y vec2 dist function v0 return Math sqrt v0 x v0 x v0 y v0 y vec2 norm function v0 let ln Math sqrt v0 x v0 x v0 y v0 y valid ln return vec2 scale v0 1 0 ln vec2 lerp function a b t let ti 1 t return new vec2 ti a x t b x ti a y t b y vec2 fromAngle function angle return new vec2 Math cos angle Math sin angle class Particle constructor x y this pos new vec2 x y this vel new vec2 Math random 2 1 Math random 2 1 this acc new vec2 0 0 this size 8 move acc if acc this acc vec2 add this acc acc this vel vec2 add this vel this acc this pos vec2 add this pos this vel if vec2 dist this vel 1 this vel vec2 norm this vel this acc new vec2 0 0 draw ctx fillRect this pos x this pos y this size this size wrap if this pos x w this pos x 0 else if this pos x 0 this size this pos x w 1 if this pos y h this pos y 0 else if this pos y 0 this size this pos y h 1 let ctx let field let w h let size let columns let rows let noiseZ let particles let hue function setup size 15 hue 0 noiseZ 0 canvas document querySelector canvas ctx canvas getContext 2d reset window addEventListener resize reset function initParticles particles let numberOfParticles w h 1500 for let i 0 i numberOfParticles i let particle new Particle Math random w Math random h particles push particle console log init particles function initField console log init field field new Array columns for let x 0 x columns x field x new Array columns for let y 0 y rows y field x y let v new vec2 0 0 field x y v function calculateField console log calc field for let x 0 x columns x for let y 0 y rows y let angle simplex3 x 20 y 20 noiseZ Math PI 2 let len simplex3 x 40 40000 y 40 40000 noiseZ 0 5 field x y vec2 norm field x y field x y angle angle field x y vec2 fromAngle angle field x y len len field x y angle angle function reset w canvas width window innerWidth h canvas height window innerHeight ctx strokeStyle white columns Math round w size 1 rows Math round h size 1 initParticles initField console log reset finished function draw now requestAnimationFrame draw calculateField noiseZ 0 01 now 0 0002 drawBackground drawFlowField drawParticles function drawBackground ctx fillStyle black ctx fillRect 0 0 w h function drawParticles hue 0 5 ctx fillStyle hsla hue 50 50 1 particles forEach p p draw let pos vec2 scale p pos 1 0 size let v x 1 y 1 if pos x 0 pos x columns pos y 0 pos y rows v field Math floor pos x Math floor pos y p move v p wrap function drawFlowField for let x 0 x columns x for let y 0 y rows y ctx beginPath let x1 x size let y1 y size ctx moveTo x1 y1 ctx lineTo x1 field x y x size 2 y1 field x y y size 2 ctx stroke setup draw performance now

1 this acc new vec2 0 0 this size 8 move acc if acc this acc vec2 add this acc acc this vel vec2 add this vel this acc this pos vec2 add this pos this vel if vec2 dist this vel 1 this vel vec2 norm this vel this acc new vec2 0 0 draw ctx fillRect this pos x this pos y this size this size wrap if this pos x w this pos x 0 else if this pos x 0 this size this pos x w 1 if this pos y h this pos y 0 else if this pos y 0 this size this pos y h 1 let ctx let field let w h let size let columns let rows let noiseZ let particles let hue function setup size 15 hue 0 noiseZ 0 canvas document querySelector canvas ctx canvas getContext 2d reset window addEventListener resize reset function initParticles particles let numberOfParticles w h 1500 for let i 0 i numberOfParticles i let particle new Particle Math random w Math random h particles push particle console log init particles function initField console log init field field new Array columns for let x 0 x columns x field x new Array columns for let y 0 y rows y field x y let v new vec2 0 0 field x y v function calculateField console log calc field for let x 0 x columns x for let y 0 y rows y let angle simplex3 x 20 y 20 noiseZ Math PI 2 let len simplex3 x 40 40000 y 40 40000 noiseZ 0 5 field x y vec2 norm field x y field x y angle angle field x y vec2 fromAngle angle field x y len len field x y angle angle function reset w canvas width window innerWidth h canvas height window innerHeight ctx strokeStyle white columns Math round w size 1 rows Math round h size 1 initParticles initField console log reset finished function draw now requestAnimationFrame draw calculateField noiseZ 0 01 now 0 0002 drawBackground drawFlowField drawParticles function drawBackground ctx fillStyle black ctx fillRect 0 0 w h function drawParticles hue 0 5 ctx fillStyle hsla hue 50 50 1 particles forEach p p draw let pos vec2 scale p pos 1 0 size let v x 1 y 1 if pos x 0 pos x columns pos y 0 pos y rows v field Math floor pos x Math floor pos y p move v p wrap function drawFlowField for let x 0 x columns x for let y 0 y rows y ctx beginPath let x1 x size let y1 y size ctx moveTo x1 y1 ctx lineTo x1 field x y x size 2 y1 field x y y size 2 ctx stroke setup draw performance now

2dracecargame
3dplot
a4print
about
acecustomkeywords
acecustomkeywords2
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
candycrush
candycrush2
canvas
canvas2
canvas3
canvasmandelbrot
canvasmandelbrot2
canvasnumbers
canvaszoom
capsule
car2dsimulationphysics
car2dsimulationphysics2
changingimages
chaosgame
chaosrandom
chaosrandomhisto
chaosrandomhisto2
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
curleffect
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
fluiddynamics
fluiddynamics2
fluiddynamics3
fluidgaswatergl
fluidsmokedynamics
fluidsmokedynamics2
fonts
fonts2
footerbar
fractalmaze
fractalmaze2
fractalnoiseimage
fractals
fractals2
fractaltree
freesvg
fresnel
froggerjs
gantt
gifgiphyapi
gifhex
gltffromscratch
gradients
griditems
griditems2
griditems3
griditems4
gridworms
happyfont
heat
hexview
hexview2
highlight
icons
icons2
iframes
ik
imagetracertosvg
imgur
inputfile
invadersjs
ipynb
ipynb2
ipynb3
ipynb4
isbn13
isbn2
jpghex
jquery
jquery2
jqueryui
jqueryui2
jsdraganddrop
jsfire
jslint
jsobfuscate
jsraytracer
jstree
jstree2
jszip
jszipimages
jszipread
keyboardpiano
keyframes
l2dwidget
lcpsolverrigidbodies
lda
leftmenu
less
less2
lineargradientimage
linenumbers
loadimagefromfile
makepdf
maps
markdown
markdown2
markdown3
markdownalerts
markdownalerts2
markdownbookmarks
markovimage
markovpixelblocks
mathjax
matrices
matsandvects
mazegamejs
md2tex
metrotiles
metrowindows
milestones
minkowski2dboxes
misc
misc2
modules
myipdetails
mymodplotly
neataptic
networkstructures
networkstructures2
neural_network_drawshape
neural_network_plot_in_vs_out
neuralnetworkarrays
neuralnetworkblocks
neuralnetworksinewave
neuralnetworksnolibs
neuralnetworkvisualization
noiseflowfield
noiseflowfield2
noiseflowfield3
noiseflowfield4
noiseflowfield5
noiseflowfield6
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
pixelgridpattern
playground
plotly
plotlynoise
plotlyranddist
plyloader
plyloader2
pngtxtencoder
pongjs
pptxgenjs
prettycode
prism
prn
problems
progress
pseudorandom
px2svg
python
quotes
racergame
random
randomcalcpie
randomgenerator
randomprofilepatterns
randomsinhistogram
randomstring
rating
rayambient
raymonte
raymonteprogressive
raymonteprogressive2
raymontewarmstart
reexpcross
reexpcross2
regex
regexbib
regexpfixbib
regexpmultiline
repeatwordsregexp
resizabletable
resizabletable2
revealjs
revealjs2
revealjsmulti
rigidbodyspheres2d
rigidbodyspheres3
rigidbodysphereslopetangent
ritalanguage
ritalanguage2
ritalanguage3
rotateimg
rough
rsapublicprivatekeys
rss
rss2
sankey
scrappingsvg
scrolltext
scrolltext2
scrollwidth
sdf2dcanvas
sdfboxinboxtwist
sdfchessbishop
sdfchessking
sdfchessknight
sdfchesspawn
sdfchessqueen
sdfchessrook
sdfhollowbox
setintervalexception
shareurl
shuffle
sidecomment
similarity
simplehighlighter
simpleplatformgamejs
sinecanvas
sliderpopout
slides
smileys
snowfall
snowman
sound
soundsignal
sphererayintersection
springs
sqljs
steganography
stereogram
stringmatching
sudoku
sudoku2
sudoku3
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