After following the tutorial for setting up a basic scene at this link, it is suggested to call the renderer in the standard way:
function render() {
requestAnimationFrame( render );
renderer.render( scene, camera );
}
render();
However, since I am creating a static image, generating frames seems unnecessary. Is there a way to render the scene just once and keep the rendered image without redrawing?