pca006132

Results 84 comments of pca006132

I guess the issue is due to the lack of proper lifetime tracking in artiq. As you will use the returned list value, we cannot deallocate (call stackrestore) immediately after...

> Just for future reference (I'm sure you're aware), it isn't really possible to deallocate single items off the stack; the best we can do is to restore the stack...

For testing, I guess we can just write a simple function to read/write ply files? We don't need to support the spec, just make sure that the output can be...

The fuzzer will just give us an array of bytes, we will transform that into operations for geometric objects, so in principle we can favor generating colinear/coplanar/complex holes in addition...

I am not familiar with emscripten, but it seems that you have to export the symbols as C symbols to avoid name mangling and use their tool to generate the...

I'm having a look at this, but it seems that the API exposed to JS will not be very convenient to use as you will need to call delete everywhere:...

OK it seems that three.js also require calling dispose explicitly, so this should not be a problem. Wondering if it will be better to just create a C FFI, so...

Indeed the structure looks like the one in pybind11. I guess we should do something similar to https://github.com/elalish/manifold/blob/master/tools/pymanifold.cpp

Yes we are all noobs at CMake, I wasn't using CMake (modifying CMake files) before this project. I can help to review the changes and clean it up if needed....

I plan to improve the js example by: - Adding a text editor next to the canvas, so users can write code and view the result. There will also be...