add work/pool url options in engine constructor

This commit is contained in:
Stewart Allen 2025-07-13 14:20:16 -04:00
commit cb98a056f8
2 changed files with 13 additions and 8 deletions

View file

@ -88,8 +88,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js"></script>
<!-- <script src="/lib/kiri-run/engine.js" type="module"></script> -->
<script type="module">
import { Engine } from '/lib/kiri-run/engine.js';
const engine = new Engine();
import { Engine } from '/lib/kiri/run/engine.js';
let edit, saveit = "";
function $(id) { return document.getElementById(id) }
function onload() {
@ -127,7 +126,7 @@
eval(`(function(){${code}})()`);
}
function demoFDM() {
engine
new Engine()
.setListener(display_message)
.load("/obj/cube.stl")
.then(eng => eng.setProcess({
@ -144,7 +143,7 @@
}
function demoCAM(){
engine
new Engine()
.setListener(display_message)
.load("/obj/cube.stl")
// should to call widget.setTopZ here ideally
@ -244,7 +243,7 @@
}
function demoLASER(){
engine
new Engine()
.setListener(display_message)
.load("/obj/cube.stl")
// should to call widget.setTopZ here ideally