Skip to content

Instantly share code, notes, and snippets.

@aterribili
Forked from nklsrh/BNG_Pong_basicsphere
Last active December 24, 2019 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aterribili/71691521c65162b3c6757a2d844d4922 to your computer and use it in GitHub Desktop.
Save aterribili/71691521c65162b3c6757a2d844d4922 to your computer and use it in GitHub Desktop.
Fix missing `)`
// ---------------------------------
// 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