Platform
Solutions
Resources
Pricing
Sign in
Sign up
David B.
Data viz engineer | twitter.com/dbumbeishvili
Workspace
Fork
Published
3 collections
By
David B.
Edited
Fork of
Three.js - Observable Template
•
5 forks
7 stars
3D
Blender Renders
Bumpy Earth
Scans
Globe.gl
Three.js - Transparent Objects
Three.js - wooden bar chart
3D Pie Chart 😈
deck.gl Country Layers
clx. Hello, 3D geographic terrains!
clx. Hello, 3D geographic contours!
3D bar chart port
Population density in Georgia
clx. deck.gl GeoJsonLayer Example
Realty Property Transactions in Georgia
clx. Deckgl HexagonLayer
Emigration - Georgia (Country)
clx. BikeTown PDX
clx. Webgl Globe
3d Area chart - three.js
clx. Spinnable planets
Porting d3-3d scatterplot example
Porting 3d-force-graph rotation example
clx. Porting spherical coordinates
clx. porting 3D Scatter Plot Using three.js
clx. Porting 3D Wireframe from OBJ File
Three.js Basics
Also listed in…
Three.js
Visualizations
Insert cell
Insert cell
Insert cell
data
=
[
[
3
,
2
,
1
]
,
[
6
,
5
,
4
]
,
[
5
,
7
,
6
]
]
Insert cell
Insert cell
mutable
i
=
1
Insert cell
Insert cell
loader
=
new
THREE
.
TextureLoader
(
)
Insert cell
Insert cell
function
update
(
)
{
/*********** PUT ANIMATION LOGIC HERE **********/
//cubeGroup.rotation.x += 0.001;
cubeGroup
.
rotation
.
y
+=
0.001
;
//cubeGroup.rotation.z += 0.001;
/***********************************************/
}
Insert cell
Insert cell
function
render
(
scene
)
{
renderer
.
render
(
scene
,
camera
)
;
}
Insert cell
renderer
=
{
const
renderer
=
new
THREE
.
WebGLRenderer
(
{
antialias
:
true
}
)
;
renderer
.
setSize
(
width
,
height
)
;
renderer
.
setPixelRatio
(
window
.
devicePixelRatio
)
;
renderer
.
gammaFactor
=
2.2
;
renderer
.
gammaOutput
=
true
;
renderer
.
physicallyCorrectLights
=
true
;
return
renderer
;
}
Insert cell
Insert cell
cubeGroup
=
{
const
group
=
new
THREE
.
Group
(
)
;
data
.
forEach
(
(
row
,
i
,
iarr
)
=>
{
row
.
forEach
(
(
d
,
j
,
jarr
)
=>
{
cubeMeshes
[
i
]
[
j
]
.
position
.
set
(
i
/
iarr
.
length
-
0.5
,
d
/
max
*
0.5
-
0.6
,
j
/
jarr
.
length
-
0.5
)
;
//cubeMeshes[i][j].scale.set(1,4,1);
group
.
add
(
cubeMeshes
[
i
]
[
j
]
)
;
}
)
}
)
return
group
;
}
Insert cell
Insert cell
cubeMeshes
=
{
const
cubeMeshes
=
cubeGeometries
.
map
(
row
=>
{
return
row
.
map
(
cubeGeometry
=>
new
THREE
.
Mesh
(
cubeGeometry
,
cubeMaterial
)
)
}
)
return
cubeMeshes
;
}
Insert cell
Insert cell
cubeMaterial
=
{
const
cube
=
new
THREE
.
MeshStandardMaterial
(
{
map
:
loader
.
load
(
'https://threejsfundamentals.org/threejs/lessons/resources/images/compressed-but-large-wood-texture.jpg'
)
}
)
;
cube
.
color
.
convertSRGBToLinear
(
)
;
return
cube
;
}
Insert cell
Insert cell
cubeGeometries
=
data
.
map
(
row
=>
{
return
row
.
map
(
c
=>
{
return
new
THREE
.
BoxGeometry
(
0.2
,
c
/
max
,
0.2
)
;
}
)
}
)
Insert cell
Insert cell
mainLight
=
{
const
light
=
new
THREE
.
DirectionalLight
(
0xffffff
,
3.0
)
;
light
.
position
.
set
(
10
,
10
,
10
)
;
return
light
;
}
Insert cell
ambientLight
=
{
const
light
=
new
THREE
.
HemisphereLight
(
0xddeeff
,
0x202020
,
3
)
;
return
light
;
}
Insert cell
Insert cell
height
=
500
Insert cell
Insert cell
fov
=
18
Insert cell
aspect
=
width
/
height
Insert cell
near
=
0.1
Insert cell
far
=
1000
Insert cell
camera
=
{
const
camera
=
new
THREE
.
PerspectiveCamera
(
fov
,
aspect
,
near
,
far
)
;
camera
.
position
.
set
(
-
4
,
1
,
4
)
;
return
camera
;
}
Insert cell
Insert cell
max
=
Math
.
max
.
apply
(
Math
,
data
.
map
(
d
=>
Math
.
max
.
apply
(
this
,
d
)
)
)
Insert cell
Insert cell
THREE
=
{
const
THREE
=
window
.
THREE
=
await
require
(
"three@0.99.0/build/three.min.js"
)
;
await
require
(
"three@0.99.0/examples/js/controls/OrbitControls.js"
)
.
catch
(
(
)
=>
{
}
)
;
return
window
.
THREE
;
}
Insert cell
One platform
to build and deploy the best data apps
Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Try it for free
Learn more