Antoine Beyeler

Results 303 comments of Antoine Beyeler

Demo site as of just prior to starting on these issues: https://demo.rerun.io/pr/2781/examples/structure_from_motion/ Handy to have around for comparison (e.g. #2796 made #2728 somewhat worse).

We just had a technical/tactical discussion with @Wumpf on many of these issues: - In several cases, we need to create custom widget wrappers. This could be done using this...

@thinkrapido Did you make any progresses with this PR? I just ran into the issue of passing state from outside `nannou::app()`, which it would solve.

Cool! 🤩 A good was to go about this would be to discuss the APIs before spending too much time fine-tuning the implementation. That can be done here or in...

Well, vsketch is based on and uses vpype, so yes, anything that's in vpype can be used in vsketch. This can happen in two ways: - Functionality is implemented in...

That's a feature I've had in mind for a while but haven't implemented yet.

#206 is meant to implement a mechanism where arbitrary styling could be implemented by passing functions that would transform every line (e.g. created by `rect` or `ellipse`, etc.) into something...

> It also refactors the save thread to pass the entire sketch object in so the thread can handle all the parsing/generating logic locally. I'm just wondering if we should...

I think all save methods (like, `vsk save`) should lead to the same result. I'm happy of `vsk save` to have the JSON params instead of the command line. Having...

I feel that would be best achieved by some general purpose file naming pattern. That could by a class variable possibly set by the sketch class: ```python class MySketch(vsketch.SketchClass): FILE_NAME_PATTERN...