Published
Edited
Jul 10, 2019
2 forks
6 stars
Insert cell
Insert cell
Insert cell
{
let camera,
renderer,
scene,
controls,
mesh,
meshGroup,
meshes,
height=400;
init();
function createCamera() {
// Create a Camera
const fov = 25; // AKA Field of View
const aspect = width / height;
const near = 0.1; // the near clipping plane
const far = 1000; // the far clipping plane

camera = new THREE.PerspectiveCamera(fov, aspect, near, far);
camera.position.set(0, 30, 0);
camera.up.set(0,0,1)
camera.lookAt(0,0,0)

}
function createLights() {
// Create a directional light
const mainLight = new THREE.PointLight(0xffffff, 22.0);


// remember to add the light to the scene
scene.add( mainLight);
}
function createMaterials() {
const sun = new THREE.MeshPhongMaterial({
color:'yellow',
emissive: '#F8CE3B',
});
const earth = new THREE.MeshPhongMaterial({
color: '0x2233FF',
emissive: 0x112244,
flatShading: true
});
const moon = new THREE.MeshPhongMaterial({
emissive: '#191A0F',
flatShading: true
});
[sun,earth,moon].forEach(m=>{
m.color.convertSRGBToLinear();
})
return {
sun,
earth,
moon
}
}
function createGeometries() {
const sphere = new THREE.SphereBufferGeometry( 1, 12, 12 );
return {
sphere
}
}
function createMeshes() {
const materials = createMaterials();
const geometries = createGeometries();
const sunMesh = new THREE.Mesh( geometries.sphere, materials.sun );
sunMesh.scale.set(5, 5, 5);
const earthMesh = new THREE.Mesh( geometries.sphere, materials.earth );
earthMesh.rotation.x = Math.PI/2 +Math.PI*0.2;
earthMesh.position.x = 10;
const moonMesh = new THREE.Mesh(geometries.sphere, materials.moon);
moonMesh.position.x = 0;
moonMesh.scale.set(0.5, 0.5, 0.5);

const solarSystem = new THREE.Object3D();
const earthOrbit = new THREE.Object3D();
earthOrbit.position.x = 10;
const moonOrbit = new THREE.Object3D();
moonOrbit.position.x = 2;

moonOrbit.add(moonMesh)
// earthOrbit.add(earthMesh)
earthOrbit.add(moonOrbit)
solarSystem.add(sunMesh)
solarSystem.add(earthOrbit)
solarSystem.add(earthMesh)
const group = new THREE.Group();
group.add(solarSystem);
meshGroup = group;

// Add the mesh to the scene
scene.add(group);
return {
sun:sunMesh,
earth:earthMesh,
moon:moonMesh,
solarSystem:solarSystem,
earthOrbit:earthOrbit,
moonOrbit:moonOrbit
}
}
function createRenderer() {
// create the renderer
renderer = new THREE.WebGLRenderer({
antialias: true
});

renderer.setSize(width, height);
renderer.setPixelRatio(window.devicePixelRatio);
renderer.gammaFactor = 2.2;
renderer.gammaOutput = true;
renderer.physicallyCorrectLights = true;
}
function init() {
// create a Scene
scene = new THREE.Scene();
// Set the background color
scene.background = new THREE.Color('#00DDDC');
createCamera();
createLights();
meshes = createMeshes();
createRenderer();
Object.values(meshes).forEach(n=>{
const axes = new THREE.AxesHelper();
axes.material.depthTest = false;
axes.renderOrder = 1;
// n.add(axes)
})
controls = new THREE.OrbitControls(camera, renderer.domElement);
controls.enableDamping = true;
controls.dampingFactor = 0.05;
controls.rotateSpeed = 0.1;
invalidation.then(() => (controls.dispose(), renderer.dispose()));
}
function render() {
renderer.render(scene, camera);
}
function update() {
/*********** PUT ANIMATION LOGIC HERE **********/
meshes.earth.rotation.y +=0.1;
meshes.earthOrbit.rotation.y +=0.1;
meshes.solarSystem.rotation.z +=0.01;
/***********************************************/
}
function onWindowResize() {
camera.aspect = width / height;;
camera.updateProjectionMatrix();
renderer.setSize(width, height)
}
window.addEventListener('resize', onWindowResize)
renderer.setAnimationLoop(() => {
update();
render();
controls.update()
})
invalidation.then(() => {
controls.dispose();
renderer.dispose();
window.removeEventListener('resize', onWindowResize);
});
yield renderer.domElement
}
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.
Learn more