{
let camera,
renderer,
scene,
controls,
mesh,
meshGroup,
meshes,
height=400;
init();
function createCamera() {
const fov = 25;
const aspect = width / height;
const near = 0.1;
const far = 1000;
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() {
const mainLight = new THREE.PointLight(0xffffff, 22.0);
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(moonOrbit)
solarSystem.add(sunMesh)
solarSystem.add(earthOrbit)
solarSystem.add(earthMesh)
const group = new THREE.Group();
group.add(solarSystem);
meshGroup = group;
scene.add(group);
return {
sun:sunMesh,
earth:earthMesh,
moon:moonMesh,
solarSystem:solarSystem,
earthOrbit:earthOrbit,
moonOrbit:moonOrbit
}
}
function createRenderer() {
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() {
scene = new THREE.Scene();
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;
})
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() {
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
}