Catherine
Catherine
@zhuowei D'oh... ```patch diff --git a/src/platform/html/solvespaceui.js b/src/platform/html/solvespaceui.js index 9419cdc..d974356 100644 --- a/src/platform/html/solvespaceui.js +++ b/src/platform/html/solvespaceui.js @@ -40,7 +40,7 @@ function setLabelWithMnemonic(element, labelText) { var mnemonic = document.createElement('u'); mnemonic.innerText = matches[2]; label.appendChild(mnemonic);...
@zhuowei That said, you highlight a separate issue. Does the following work for you? ```patch diff --git a/src/platform/html/solvespaceui.js b/src/platform/html/solvespaceui.js index d974356..361cf08 100644 --- a/src/platform/html/solvespaceui.js +++ b/src/platform/html/solvespaceui.js @@ -40,7 +40,7 @@...
@q3k Yes, this is a known issue in wasm. I'd need to look at a way to make overflowing float to integer conversions defined without losing performance or compatibility.
I've updated the branch to use upstream (i.e. LLVM's) wasm support in emscripten. This results in a very nice 5.5 MB deployable binary when built with `-O3`.
The solver is already buildable separately. I think you can just use current code from master with possibly minor modifications if you want to use it in your own WASM...
@mmiscool I haven't spent much time on this PR as other SolveSpace issues seemed more important. Which browser are you using? In general, this PR probably won't be usable with...
> For file management have you looked at using local storage? The solvespace file format is just text at the moment, I could put together some javascript to handle file...
> See the following video for behavior. That's a known issue. IIRC Chrome flat out broke the devicePixelRatio API several months back, at some point after I did the port.
> Assembly files can be opened one-by-one through openfile dialog. Again, I don't consider that solution acceptable. > but then we can save all the assemby into one metafile (zipped...
Is that for Autodrop3d? I understand that it would be convenient for your project, but I don't think it's the right choice for upstream SolveSpace. That said, I think you'll...