var OccViewerModule = { print: (function() { var anElement = document.getElementById('output'); return function(theText) { anElement.innerHTML += theText + "
"; }; })(), printErr: function(theText) { //var anElement = document.getElementById('output'); //anElement.innerHTML += theText + "
"; console.warn(theText); }, canvas: (function() { var aCanvas = document.getElementById('occViewerCanvas'); var aGlCtx = aCanvas.getContext ('webgl2', { alpha: false, depth: true, antialias: false, preserveDrawingBuffer: true } ); if (aGlCtx == null) { aGlCtx = aCanvas.getContext ('webgl', { alpha: false, depth: true, antialias: false, preserveDrawingBuffer: true } ); } return aCanvas; })(), onRuntimeInitialized: function() { //console.log(" @@ onRuntimeInitialized()" + Object.getOwnPropertyNames(OccViewerModule)); } }; const OccViewerModuleInitialized = createOccViewerModule(OccViewerModule); OccViewerModuleInitialized.then(function(Module) { //OccViewerModule.setCubemapBackground ("cubemap.jpg"); OccViewerModule.openFromUrl ("ball", "samples/Ball.brep"); });