Published
Edited
May 22, 2021
1 fork
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
image = loadImage(await randomImage(512, 512, 'butterfly'))
Insert cell
Insert cell
texture = {
let tex = new THREE.CanvasTexture(image);
tex.wrapS = tex.wrapT = THREE.RepeatWrapping;
tex.offset.set(uoffset, voffset);
tex.repeat.set(urepeat, vrepeat);
return tex;
}
Insert cell
plane = {
const geometry = new THREE.PlaneGeometry();
const material = new THREE.MeshBasicMaterial({
color: 0xffffff,
side: THREE.DoubleSide,
map: texture
});
const plane = new THREE.Mesh(geometry, material);
return plane;
}
Insert cell
renderer = new THREE.WebGLRenderer({
canvas: html`<canvas width=640 height=480>`
})
Insert cell
camera = {
let camera = new THREE.PerspectiveCamera(60, 4 / 3, 0.1, 100);
camera.position.set(0, 0, 1.5);
return camera;
}
Insert cell
light = {
let light = new THREE.DirectionalLight(0xffffff, 1);
light.position.set(1, 1, 10);
return light;
}
Insert cell
scene = {
let scene = new THREE.Scene();
scene.background = new THREE.Color(0xCCCCCC);
scene.add(plane);
scene.add(light);
return scene;
}
Insert cell
controls = new THREE.OrbitControls(camera, renderer.domElement)
Insert cell
Insert cell
{
for (let frame = 0; ; frame++) {
renderer.render(scene, camera);
yield frame;
}
}
Insert cell
Insert cell
THREE = {
const THREE = (window.THREE = await require('three@0.128'));
await require('three@0.128/examples/js/controls/OrbitControls.js').catch(
() => {}
);
await require('three@0.128/examples/js/controls/TrackballControls.js').catch(
() => {}
);
return THREE;
}
Insert cell
Insert cell
async function randomImage(sizeOrWidth = null, height = sizeOrWidth, term='flower') {
const size = sizeOrWidth ? `/${+sizeOrWidth}x${+height}` : '';
return (await fetch(`https://source.unsplash.com/${+sizeOrWidth}x${+height}/?${term}`, {
method: 'head',
cache: 'no-store',
})).url;
}
Insert cell
function loadImage(src) {
const img = DOM.element('img', { crossorigin: 'anonymous', src });
return img.decode().then(() => img);
}
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.
Learn more