tschundler

Results 5 issues of tschundler

Currently, everything is G1. Changing travel to G0 doesn't do anything, but would make the output clearer in other gcode viewers

When duplicating something, it seems to copy the whole tree. Edits to the original do not affect the copy. Most of the time, I suspect that is what users want....

Rust
Paper Cut

``` dbg!(vector![0,2].simd_clamp(vector![-1,-1], vector![1,1])); ``` returns ``` vector![0, 2].simd_clamp(vector![- 1, - 1], vector![1, 1]) = [ [ 0, 2, ], ] ``` I'd expect [0,1] Similarly: ``` [src/main.rs:45] vector![- 2, 2].simd_clamp(vector![-...

The source code links to https://zellij.dev/screencasts/stacked-resize, which is a 404, the real page is https://zellij.dev/tutorials/stacked-resize/ eg https://github.com/zellij-org/zellij/blob/8113ddf9dbbf04bf8bb5e33c8de0e7d55155d277/default-plugins/about/src/pages.rs#L650 Since the code in in a release, there should be a redirect from...

The library claims to be low-memory, but for some displays like the popular SSD1306, [a full framebuffer is required](https://docs.rs/ssd1306/0.10.0/ssd1306/mode/struct.BufferedGraphicsMode.html). This is because they cannot draw arbitrary single pixels, rather the...