Replies: 1 comment
-
@bergwerf I suggest you take a look at https://github.com/rdkit/rdkit-structure-renderer, which is also available as |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I noticed that this library uses WebAssembly, and that the initialization is async. However, subsequent calls to the library are sync (e.g. they do not have to be awaited). I imagined that all work would be done in a Web Worker running the compiled WASM, but then all calls should have been async. How does this work exactly?
For my application I am interested in using the CoordGen 2D layout algorithm. It might be valuable if this computation happens async, such that it doesn't block the UI thread when it isn't instant.
Beta Was this translation helpful? Give feedback.
All reactions