I am trying to use dat.gui with a very simple three.js (r73) scene but am running into an issue with rotate and pan not working after adding \"renderer.domElement\" to the t
Make sure the renderer DOM element is added to the html before it is being used as a reference.
document.body.appendChild(renderer.domElement);