import {_testFinish, Mesh, SphereGeometry, ThreeViewer, UnlitMaterial} from 'threepipe' const viewer = new ThreeViewer({ canvas: document.getElementById('mcanvas'), msaa: true, }) const sphere = new Mesh(new SphereGeometry(1, 32, 32), new UnlitMaterial({color: '#ff0000'})) viewer.scene.addObject(sphere) _testFinish()