threejs scene

Solutions on MaxInterview for threejs scene by the best coders in the world

showing results for - "threejs scene"
Pablo
10 Oct 2016
1const scene = new THREE.Scene();
2const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
3
4const renderer = new THREE.WebGLRenderer();
5renderer.setSize( window.innerWidth, window.innerHeight );
6document.body.appendChild( renderer.domElement );
Jona
07 Feb 2017
1let scene = new THREE.Scene();