What’s on our mind?

Collection of articles, design, site, and resources made by designers and publisher @Menu View

*
	//화면 생성
    const scene = new THREE.Scene();

    //카메라 설정
    const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 1, 1000)
    camera.position.z = 25

    //렌더링 설정
    renderer = new THREE.WebGLRenderer({antialias:true, alpha: true});
    renderer.setSize(window.innerWidth, window.innerHeight);
    renderer.setPixelRatio(window.devicePixelRatio);
    document.body.appendChild(renderer.domElement);

    //메쉬 설정
    const geometry = new THREE.BoxGeometry( 10, 10, 10 );
    const edges = new THREE.EdgesGeometry( geometry );
    const material = new THREE.LineBasicMaterial({color:0xaa88ff})
    const line = new THREE.LineSegments( edges, material );
    line.position.set(0,0,0)
    scene.add(line)

    const geometry3 = new THREE.DodecahedronGeometry(5, 1)
    const material3 = new THREE.MeshStandardMaterial({color: 0xaa88ff, wireframe: true})
    const mesh3 = new THREE.Mesh(geometry3, material3)
    mesh3.position.set(0,0,0)
    scene.add(mesh3)
  
    //조명 설정
    const ambientLight = new THREE.AmbientLight(0x663399)
    scene.add(ambientLight)

    const directionalLight1 = new THREE.DirectionalLight(0xffffff, 0.2)
    directionalLight1.position.z = 4
    scene.add(directionalLight1)

    const directionalLight2 = new THREE.DirectionalLight(0xffffff, 1);
    directionalLight2.position.y = 10;
    scene.add(directionalLight2);

    const directionalLight3 = new THREE.DirectionalLight(0xffffff, .5);
    directionalLight3.position.set(-10,-20,10);
    scene.add(directionalLight3);

    //애니메이션 설정
    function animate() {
        requestAnimationFrame(animate);

        line.rotation.x += .005
        line.rotation.y += .005
        line.rotation.z += .005
        mesh3.rotation.x += .005
        mesh3.rotation.y += .005
        mesh3.rotation.z += .005
    
        renderer.render(scene, camera);
    }
    animate();

    //화면 사이즈 설정
    function onWindowResize() {
        camera.aspect = window.innerWidth / window.innerHeight;
        camera.updateProjectionMatrix();
        renderer.setSize(window.innerWidth, window.innerHeight);
    }
    window.addEventListener('resize', onWindowResize);