Sebastian Kuzminsky

Results 29 issues of Sebastian Kuzminsky

It is a common CAM use-case to import a complete drawing of a part and do different operations on different parts of the model. I think there's currently no convenient...

Here's the original SVG (with `.txt` extension added so github accepts it...): [plate.svg.txt](https://github.com/Klowner/inkscape-applytransforms/files/3318757/plate.svg.txt) The original SVG rendered as PNG: ![plate](https://user-images.githubusercontent.com/400548/59984166-6a4ca200-95e4-11e9-8ebf-a954a379b51e.png) SVG with "Apply Transform" run, rendered as PNG: ![plate-transformed](https://user-images.githubusercontent.com/400548/59984179-8f411500-95e4-11e9-8537-f6fedf0e3ec6.png) And...

I've run in to a couple of bugs with Arc.intersect(Arc). I've documented/reproduced the bugs here: https://github.com/SebKuzminsky/svgpathtools/commits/arc-arc-intersect I don't currently have a fix for this.

I'm seeing this problem on the current tip of master, ae42197d1096fb1d78526e542db3e0a7fffe0790. ~~~~~ from svgpathtools.path import * p = Path(Arc(start=(106.58928+132.95833j), radius=(40.82143+83.910713j), rotation=0.0, large_arc=False, sweep=True, end=(74.472411+214.93917j)), Arc(start=(74.472411+214.93917j), radius=(40.82143+83.910713j), rotation=0.0, large_arc=False, sweep=True, end=(28.658655+167.9207j)),...

I installed ngitcached version 1~precise1 from the ppa at https://launchpad.net/~rohanpm/+archive/ngitcached, and ran "ngitcached --cache-dir /opt/linuxcnc.git", and got this error: Initialized empty Git repository in /opt/linuxcnc.git/ node.js:201 throw e; // process.nextTick...

I just ran in to the bug from #366. I'm running KiCad 7 on Debian Bookworm. I had installed this project using the KiCad PCM, following the instructions in the...

I just found this library and I'm very impressed with the design and the code quality! I've been using a different (simpler) driver library to talk to little LCD screens...

This now builds clean with `-Wall` on my Debian Bookworm system with gcc 12.2.

Before this commit, if the user did not define HAGL_HAL_DEBUG the project would fail to compile because `hagl_hal_debug()` was syntactically incorrect. This commit fixes the error by providing a valid...

This initializes the display controller's internal frame buffer to all black before turning the display itself on, to avoid initially displaying random pixels. I'm not sure that the way I...