Notebook - Welcome to Notebook

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












DOCTYPE html html lang en head meta charset UTF 8 meta name viewport content width device width initial scale 1 0 title Simple Sphere SDF title style body margin 0 canvas display block style head body canvas id canvas width 500 height 500 canvas script const vertexShaderSource attribute vec3 a position varying vec3 v position void main gl Position vec4 a position 1 0 v position a position const fragmentShaderSource precision highp float uniform float iTime uniform vec2 u resolution varying vec3 v position float sdfSphere vec3 testPoint vec3 spherePos float sphereRadius return length spherePos testPoint sphereRadius float sdfCube vec3 testPoint vec3 cubePos vec3 cubeDim vec3 d abs cubePos testPoint cubeDim return min max d x max d y d z 0 0 length max d vec3 0 0 float sdfTetrahedron vec3 z vec3 a1 vec3 1 1 1 vec3 a2 vec3 1 1 1 vec3 a3 vec3 1 1 1 vec3 a4 vec3 1 1 1 vec3 c int n 0 float dist float d const int Iterations 10 const float Scale 2 0 for int j 0 j Iterations j c a1 dist length z a1 d length z a2 if d dist c a2 dist d d length z a3 if d dist c a3 dist d d length z a4 if d dist c a4 dist d z Scale z c Scale 1 0 n return length z pow Scale float n 0 01 float rayCast vec3 ptin float t 0 0 Rotation float x 0 2 iTime float y 0 7 iTime mat4 Rx mat4 vec4 cos x sin x 0 0 0 0 vec4 sin x cos x 0 0 0 0 vec4 0 0 0 0 1 0 0 0 vec4 0 0 0 0 0 0 1 0 mat4 Ry mat4 vec4 cos y 0 0 sin y 0 0 vec4 0 0 1 0 0 0 0 0 vec4 sin y 0 0 cos y 0 0 vec4 0 0 0 0 0 0 1 0 vec3 pt vec4 ptin 1 0 Ry Rx xyz t sdfTetrahedron pt return t float rayTrace vec3 rayPos vec3 rayDir float t 0 0 for int i 0 i 200 i vec3 rayPosition rayPos rayDir t t rayCast rayPosition if t 0 0 t 1000 0 return 0 0 no hit return t vec3 getNormal vec3 pt float d rayCast pt float s 0 01 vec3 a vec3 pt x s pt y pt z vec3 b vec3 pt x pt y s pt z vec3 c vec3 pt x pt y pt z s vec3 normal normalize vec3 rayCast a d rayCast b d rayCast c d return normal void main vec2 uv gl FragCoord xy u resolution xy uv uv 2 0 1 0 Map uv coordinates to range 1 1 Convert 2D UV to 3D position vec3 rayDir normalize vec3 uv 2 5 vec3 0 0 0 vec3 rayPos vec3 0 0 0 0 5 0 vec3 fragColor vec3 1 1 1 float res rayTrace rayPos rayDir if res 0 0 fragColor vec3 1 0 0 5 0 0 vec3 n getNormal rayPos rayDir res vec3 lightDirection vec3 0 0 0 0 1 0 fragColor fragColor min dot n lightDirection 1 0 gl FragColor vec4 fragColor 1 0 function createShader gl type source const shader gl createShader type gl shaderSource shader source gl compileShader shader if gl getShaderParameter shader gl COMPILE STATUS console error An error occurred compiling the shaders gl getShaderInfoLog shader gl deleteShader shader return null return shader function createProgram gl vertexShader fragmentShader const program gl createProgram gl attachShader program vertexShader gl attachShader program fragmentShader gl linkProgram program if gl getProgramParameter program gl LINK STATUS console error Unable to initialize the shader program gl getProgramInfoLog program return null return program function main const canvas document getElementById canvas const gl canvas getContext webgl if gl console error Unable to initialize WebGL Your browser may not support it return Compile vertex and fragment shaders const vertexShader createShader gl gl VERTEX SHADER vertexShaderSource const fragmentShader createShader gl gl FRAGMENT SHADER fragmentShaderSource Create shader program const program createProgram gl vertexShader fragmentShader gl useProgram program Set up vertex buffer const positionBuffer gl createBuffer gl bindBuffer gl ARRAY BUFFER positionBuffer const positions 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 gl bufferData gl ARRAY BUFFER new Float32Array positions gl STATIC DRAW const positionAttributeLocation gl getAttribLocation program a position gl enableVertexAttribArray positionAttributeLocation gl vertexAttribPointer positionAttributeLocation 3 gl FLOAT false 0 0 Set resolution uniform const resolutionUniformLocation gl getUniformLocation program u resolution gl uniform2f resolutionUniformLocation canvas width canvas height let timevalue 1 0 const timeUniformLocation gl getUniformLocation program iTime gl uniform1f timeUniformLocation timevalue Clear canvas gl clearColor 0 0 0 0 0 0 1 0 gl clear gl COLOR BUFFER BIT update loop function render Draw gl drawArrays gl TRIANGLES 0 6 timevalue 0 01 gl uniform1f timeUniformLocation timevalue requestAnimationFrame render Looping animation render main script body html

uv uv 2 0 1 0 Map uv coordinates to range 1 1 Convert 2D UV to 3D position vec3 rayDir normalize vec3 uv 2 5 vec3 0 0 0 vec3 rayPos vec3 0 0 0 0 5 0 vec3 fragColor vec3 1 1 1 float res rayTrace rayPos rayDir if res 0 0 fragColor vec3 1 0 0 5 0 0 vec3 n getNormal rayPos rayDir res vec3 lightDirection vec3 0 0 0 0 1 0 fragColor fragColor min dot n lightDirection 1 0 gl FragColor vec4 fragColor 1 0 function createShader gl type source const shader gl createShader type gl shaderSource shader source gl compileShader shader if gl getShaderParameter shader gl COMPILE STATUS console error An error occurred compiling the shaders gl getShaderInfoLog shader gl deleteShader shader return null return shader function createProgram gl vertexShader fragmentShader const program gl createProgram gl attachShader program vertexShader gl attachShader program fragmentShader gl linkProgram program if gl getProgramParameter program gl LINK STATUS console error Unable to initialize the shader program gl getProgramInfoLog program return null return program function main const canvas document getElementById canvas const gl canvas getContext webgl if gl console error Unable to initialize WebGL Your browser may not support it return Compile vertex and fragment shaders const vertexShader createShader gl gl VERTEX SHADER vertexShaderSource const fragmentShader createShader gl gl FRAGMENT SHADER fragmentShaderSource Create shader program const program createProgram gl vertexShader fragmentShader gl useProgram program Set up vertex buffer const positionBuffer gl createBuffer gl bindBuffer gl ARRAY BUFFER positionBuffer const positions 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 gl bufferData gl ARRAY BUFFER new Float32Array positions gl STATIC DRAW const positionAttributeLocation gl getAttribLocation program a position gl enableVertexAttribArray positionAttributeLocation gl vertexAttribPointer positionAttributeLocation 3 gl FLOAT false 0 0 Set resolution uniform const resolutionUniformLocation gl getUniformLocation program u resolution gl uniform2f resolutionUniformLocation canvas width canvas height let timevalue 1 0 const timeUniformLocation gl getUniformLocation program iTime gl uniform1f timeUniformLocation timevalue Clear canvas gl clearColor 0 0 0 0 0 0 1 0 gl clear gl COLOR BUFFER BIT update loop function render Draw gl drawArrays gl TRIANGLES 0 6 timevalue 0 01 gl uniform1f timeUniformLocation timevalue requestAnimationFrame render Looping animation render main script body html

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