Marcin Konowalczyk
Marcin Konowalczyk
**Describe the bug** TLDR: Black produced code that is not equivalent to the source on pass 1 when processing a multiline format string in the first line of the body...
Changed the colours of cube faces in 04-06 and particle colours in 07-09 to be slightly nicer on the eyes. Colors are based on Matlab's `lines` sequential colormap (which I...
I found myself having a hard time closing some of the demos, especially the `10queries_conditional_render` and `11tesselation` so I've added a key callback to close the window.
### Environment * PIP Chill version: 1.0.3 * Python version: 3.12.0 * Operating System: macos ### Description Installing pip-chill in a fresh venv companies about the lack of `pkg_resources`. Works...
3.1.0
v3.1.0 (2022-11-30) Marcin Konowalczyk -------------------------------------- - Moved some things to init - Run `black` (this is actually most of the diff) - Removed deprecated escape sequences from tests (basically backslashes...
Main changes in `updateFramebufferSize` to calculate `displayPixelRatio` and re-use it when not compiling with Emscripten to report a correct mouse position (when compiling for the web the `updateFramebufferSize` isn't called...
added support for builds in Sunburst os
TypeConversionDict provides a `type` argument for the `get` method, but does not do the same for `pop`. Currently this is the way to do a typed pop: ```python d =...
Proposed implementation of pop with type parameter on `TypeConversionDict`. Address #2883.
The containers from typing are covariant in their args. It'd make sense to make OrderedSet covariant too. ``` from ordered_set import OrderedSet class A: pass class B(A): pass def my_fun(things:...