Created
January 28, 2019 20:03
-
-
Save Davisonpro/f2c44c16fec9387d191cefc350f777f8 to your computer and use it in GitHub Desktop.
Scene
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var scene = new THREE.Scene(); | |
var camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 ); | |
var renderer = new THREE.WebGLRenderer(); | |
renderer.setSize( window.innerWidth, window.innerHeight ); | |
document.body.appendChild( renderer.domElement ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment