Created
November 30, 2019 14:36
-
-
Save ch1c0t/18e777d4328711008a95bbd7d3f5d08f to your computer and use it in GitHub Desktop.
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
camera = new THREE.PerspectiveCamera 75, (window.innerWidth / window.innerHeight), 0.1, 1000 | |
camera = new THREE.PerspectiveCamera( | |
75 | |
window.innerWidth / window.innerHeight | |
0.1 | |
1000 | |
) | |
# https://threejs.org/docs/#api/en/cameras/PerspectiveCamera | |
Camera = THREE.PerspectiveCamera | |
fov = 75 | |
aspect = window.innerWidth / window.innerHeight | |
near = 0.1 | |
far = 1000 | |
camera = new Camera fov, aspect, near, far |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment