Created
July 10, 2013 03:05
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
// --------------------------------- | |
// Based on Aerotwist's cool tutorial - http://www.aerotwist.com/tutorials/getting-started-with-three-js/ | |
// --------------------------------- | |
// set up the sphere vars | |
// lower 'segment' and 'ring' values will increase performance | |
var radius = 5, | |
segments = 6, | |
rings = 6; | |
// create the sphere's material | |
var sphereMaterial = | |
new THREE.MeshLambertMaterial( | |
{ | |
color: 0xD43001 | |
}); | |
// Create a ball with sphere geometry | |
var ball = new THREE.Mesh( | |
new THREE.SphereGeometry(radius, | |
segments, | |
rings), | |
sphereMaterial); | |
// add the sphere to the scene | |
scene.add(ball); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I fixed the line 23, it was missing the end
)
. Look at: https://gist.github.com/aterribili/71691521c65162b3c6757a2d844d4922