Mercurial > hg > orthanc
view OrthancFramework/Resources/CMake/WebAssembly/ArithmeticTests/app.js @ 5348:303e930fff0f
"/tools/create-dicom" can now be used to create Encapsulated 3D Manufacturing Model IODs (MTL, OBJ, or STL)
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 02 Jul 2023 16:24:56 +0200 |
parents | d25f4c0fa160 |
children |
line wrap: on
line source
function Initialize() { Module.ccall('Run2', // name of C function null, // return type [], // argument types []); Module.ccall('Run', // name of C function 'number', // return type [], // argument types []); } var Module = { preRun: [], postRun: [ Initialize ], print: function(text) { console.log(text); }, printErr: function(text) { if (text != 'Calling stub instead of signal()') { document.getElementById("stderr").textContent += text + '\n'; } }, totalDependencies: 0 }; if (!('WebAssembly' in window)) { alert('Sorry, your browser does not support WebAssembly :('); } else { }