Matt Broadway
Matt Broadway
There is `Workplane.rotate` and `Workplane.translate` but not `Workplane.scale`. There doesn't seem to be an easy way to scale shapes so I came up with this. Perhaps it should be part...
Some changes to the 3D view that I find useful: - I changed view rotation to behave like blender in a way that I find much more usable. I'm not...
I think this project could really benefit from mandatory linting and automatic formatting. the CI could also be configured to fail if pull requests are not formatted correctly. For formatters,...
since the application doesn't look visually different when it is rendering/drawing and when you can interact with it, I think it would be useful if there was some way to...
pytest provides a very useful fixture: [tmp_path](https://docs.pytest.org/en/7.1.x/reference/reference.html?highlight=tmp_path#tmp-path) which tests can use to be given a temporary directory unique to that test. ```python import pytest from pathlib import Path def test_something(tmp_path:...
fixes #30 and fixes #36 I ran into a very rare intermittent failure in a test which starts a Qt application and connects to a virtual framebuffer constructed with xvfb....
I was upgrading my machine the other day and I have tests which convert a lot of dxf files to my custom format and checks that no changes have occurred....
I have had a similar experience to many others (https://github.com/pyenv/pyenv-virtualenv/issues/411 https://github.com/pyenv/pyenv-virtualenv/issues/346 https://github.com/pyenv/pyenv-virtualenv/issues/265 https://github.com/pyenv/pyenv-virtualenv/issues/259) with pyenv-virtualenv being extremely slow - adding ~200ms every time I press enter - adding ~300ms when...
Activating a virtual environment from inside a python script running in another virtual environment fails. For example I have a 'script runner' application which has a set of scripts and...
### Description of your *pull request* and other information Brings `--cookies-from-browser` up to date with recent changes to chromium. Prompted by https://github.com/yt-dlp/yt-dlp/issues/6880 I had a look at [what had changed...