Medium
What will the following code generate?
const geometry = new THREE.SphereGeometry( 1, 32, 18 );
const material = new THREE.MeshBasicMaterial( { color: 'yellow' } );
const sphere = new THREE.Mesh( geometry );
scene.add(sphere);
Author: DamienStatus: PublishedQuestion passed 92 times
Edit
3
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about ThreeJS