Notebook - Welcome to Notebook

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












document body style height 400pt var sciptList https cdnjs cloudflare com ajax libs three js r128 three min js https threejs org examples js controls OrbitControls js https threejs org examples js loaders GLTFLoader js function loadScripts sc if sc sciptList length 1 main return console log script loaded sc let script document createElement script script type text javascript script src sciptList sc script onload function loadScripts sc 1 document head appendChild script loadScripts 0 function main console log Starting main const scene new THREE Scene scene background new THREE Color blue const renderer new THREE WebGLRenderer renderer setSize window innerWidth window innerHeight document body appendChild renderer domElement const fov 45 const aspect 2 the canvas default const near 0 1 const far 100 const camera new THREE PerspectiveCamera fov aspect near far camera position set 0 10 20 const controls new THREE OrbitControls camera renderer domElement console log controls controls controls target set 0 5 0 controls update const planeSize 40 const loader new THREE TextureLoader const texture loader load https threejsfundamentals org threejs resources images checker png texture wrapS THREE RepeatWrapping texture wrapT THREE RepeatWrapping texture magFilter THREE NearestFilter const repeats planeSize 2 texture repeat set repeats repeats const planeGeo new THREE PlaneGeometry planeSize planeSize const planeMat new THREE MeshPhongMaterial map texture side THREE DoubleSide const mesh new THREE Mesh planeGeo planeMat mesh rotation x Math PI 5 scene add mesh const skyColor 0xB1E1FF light blue const groundColor 0xB97A20 brownish orange const intensity 1 const light new THREE HemisphereLight skyColor groundColor intensity scene add light const color 0xFFFFFF const intensity 1 const light new THREE DirectionalLight color intensity light position set 5 10 2 scene add light scene add light target function frameArea sizeToFitOnScreen boxSize boxCenter camera const halfSizeToFitOnScreen sizeToFitOnScreen 0 5 const halfFovY THREE MathUtils degToRad camera fov 5 const distance halfSizeToFitOnScreen Math tan halfFovY compute a unit vector that points in the direction the camera is now in the xz plane from the center of the box const direction new THREE Vector3 subVectors camera position boxCenter multiply new THREE Vector3 1 0 1 normalize move the camera to a position distance units way from the center in whatever direction the camera was from the center already camera position copy direction multiplyScalar distance add boxCenter pick some near and far values for the frustum that will contain the box camera near boxSize 100 camera far boxSize 100 camera updateProjectionMatrix point the camera to look at the center of the box camera lookAt boxCenter x boxCenter y boxCenter z let curve let curveObject const controlPoints 1 118281 5 115846 3 681386 3 948875 5 115846 3 641834 3 960072 5 115846 0 240352 3 985447 5 115846 4 585005 3 793631 5 115846 4 585006 3 826839 5 115846 14 736200 14 542292 5 115846 14 765865 14 520929 5 115846 3 627002 5 452815 5 115846 3 634418 5 467251 5 115846 4 549161 13 266233 5 115846 4 567083 13 250067 5 115846 13 499271 4 081842 5 115846 13 435463 4 125436 5 115846 5 334928 14 521364 5 115846 5 239871 14 510466 5 115846 5 486727 5 745666 5 115846 5 510492 5 787942 5 115846 14 728308 5 423720 5 115846 14 761919 5 373599 5 115846 3 704133 1 004861 5 115846 3 641834 const p0 new THREE Vector3 const p1 new THREE Vector3 curve new THREE CatmullRomCurve3 controlPoints map p ndx p0 set p p1 set controlPoints ndx 1 controlPoints length return new THREE Vector3 copy p0 new THREE Vector3 lerpVectors p0 p1 0 1 new THREE Vector3 lerpVectors p0 p1 0 9 flat true const points curve getPoints 250 const geometry new THREE BufferGeometry setFromPoints points const material new THREE LineBasicMaterial color 0xff0000 curveObject new THREE Line geometry material curveObject scale set 100 100 100 curveObject position y 621 curveObject visible false material depthTest false curveObject renderOrder 1 scene add curveObject const cars const gltfLoader new THREE GLTFLoader gltfLoader load https threejsfundamentals org threejs resources models cartoon_lowpoly_small_city_free_pack scene gltf gltf const root gltf scene scene add root const loadedCars root getObjectByName Cars const fixes prefix Car_08 y 0 rot Math PI 5 0 Math PI 5 prefix CAR_03 y 33 rot 0 Math PI 0 prefix Car_04 y 40 rot 0 Math PI 0 root updateMatrixWorld for const car of loadedCars children slice const fix fixes find fix car name startsWith fix prefix const obj new THREE Object3D car position set 0 fix y 0 car rotation set fix rot obj add car scene add obj cars push obj compute the box that contains all the stuff from root and below const box new THREE Box3 setFromObject root const boxSize box getSize new THREE Vector3 length const boxCenter box getCenter new THREE Vector3 set the camera to frame the box frameArea boxSize 0 5 boxSize boxCenter camera update the Trackball controls to handle the new size controls maxDistance boxSize 10 controls target copy boxCenter controls update function resizeRendererToDisplaySize renderer const canvas renderer domElement const width canvas clientWidth const height canvas clientHeight const needResize canvas width width canvas height height if needResize renderer setSize width height false return needResize create 2 Vector3s we can use for path calculations const carPosition new THREE Vector3 const carTarget new THREE Vector3 function render time time 0 001 convert to seconds if resizeRendererToDisplaySize renderer const canvas renderer domElement camera aspect canvas clientWidth canvas clientHeight camera updateProjectionMatrix const pathTime time 01 const targetOffset 0 01 cars forEach car ndx a number between 0 and 1 to evenly space the cars const u pathTime ndx cars length get the first point curve getPointAt u 1 carPosition carPosition applyMatrix4 curveObject matrixWorld get a second point slightly further down the curve curve getPointAt u targetOffset 1 carTarget carTarget applyMatrix4 curveObject matrixWorld put the car at the first point temporarily car position copy carPosition point the car the second point car lookAt carTarget put the car between the 2 points car position lerpVectors carPosition carTarget 0 5 renderer render scene camera requestAnimationFrame render render 0

6 5 115846 5 510492 5 787942 5 115846 14 728308 5 423720 5 115846 14 761919 5 373599 5 115846 3 704133 1 004861 5 115846 3 641834 const p0 new THREE Vector3 const p1 new THREE Vector3 curve new THREE CatmullRomCurve3 controlPoints map p ndx p0 set p p1 set controlPoints ndx 1 controlPoints length return new THREE Vector3 copy p0 new THREE Vector3 lerpVectors p0 p1 0 1 new THREE Vector3 lerpVectors p0 p1 0 9 flat true const points curve getPoints 250 const geometry new THREE BufferGeometry setFromPoints points const material new THREE LineBasicMaterial color 0xff0000 curveObject new THREE Line geometry material curveObject scale set 100 100 100 curveObject position y 621 curveObject visible false material depthTest false curveObject renderOrder 1 scene add curveObject const cars const gltfLoader new THREE GLTFLoader gltfLoader load https threejsfundamentals org threejs resources models cartoon_lowpoly_small_city_free_pack scene gltf gltf const root gltf scene scene add root const loadedCars root getObjectByName Cars const fixes prefix Car_08 y 0 rot Math PI 5 0 Math PI 5 prefix CAR_03 y 33 rot 0 Math PI 0 prefix Car_04 y 40 rot 0 Math PI 0 root updateMatrixWorld for const car of loadedCars children slice const fix fixes find fix car name startsWith fix prefix const obj new THREE Object3D car position set 0 fix y 0 car rotation set fix rot obj add car scene add obj cars push obj compute the box that contains all the stuff from root and below const box new THREE Box3 setFromObject root const boxSize box getSize new THREE Vector3 length const boxCenter box getCenter new THREE Vector3 set the camera to frame the box frameArea boxSize 0 5 boxSize boxCenter camera update the Trackball controls to handle the new size controls maxDistance boxSize 10 controls target copy boxCenter controls update function resizeRendererToDisplaySize renderer const canvas renderer domElement const width canvas clientWidth const height canvas clientHeight const needResize canvas width width canvas height height if needResize renderer setSize width height false return needResize create 2 Vector3s we can use for path calculations const carPosition new THREE Vector3 const carTarget new THREE Vector3 function render time time 0 001 convert to seconds if resizeRendererToDisplaySize renderer const canvas renderer domElement camera aspect canvas clientWidth canvas clientHeight camera updateProjectionMatrix const pathTime time 01 const targetOffset 0 01 cars forEach car ndx a number between 0 and 1 to evenly space the cars const u pathTime ndx cars length get the first point curve getPointAt u 1 carPosition carPosition applyMatrix4 curveObject matrixWorld get a second point slightly further down the curve curve getPointAt u targetOffset 1 carTarget carTarget applyMatrix4 curveObject matrixWorld put the car at the first point temporarily car position copy carPosition point the car the second point car lookAt carTarget put the car between the 2 points car position lerpVectors carPosition carTarget 0 5 renderer render scene camera requestAnimationFrame render render 0

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
tensorflowdenoiseencoder
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
webnn
webnn2
webnnconv2d
webnnlstm
webnnpytorch
webnntraining
webnnwithsynaptic
webnnwithsynaptic2
webnnwithsynapticsinwave
webnnwithtensorflow
webpcanvas
webworkers
webxr
webxr2
wiggly
wikipedia