Gavin Kistner
Gavin Kistner
1. Create a playlist and add a song to it. 2. Remove that song from the MPD library. 3. Load the playlist. The playlist now has a song with a...
Many fine details added through `L`/`V`/`H`/`Z` within the `tolerance` will currently be fully represented. Need to skip commands until tolerance is exceeded for truly minimal representation at a particular tolerance.
Need to add support for `Q`/`q` and `T`/`t` before v1.0
Need to support `A`/`a` for 1.0. Easy to support the symmetrical case; need to consider how best to subdivide the elliptic case. (Is it adaptive? Or can it be purely...
Building a DOM from scratch to seraialize requires creating `nsPrefix` properties on elements and attributes, but also maintaining proper `nsURI` *if* you want to use the `omit` option during serialization....
```lua S = require'slaxdom' doc = S:dom[[]] print(S:xml(doc,{omit={'die'}})) --> ``` Expected output is ``.
**Describe the bug** Writing an exporter extension, the `animation_gather_fcurve_channel_target` hook gets called twice per gathered action. * Once in [`exp/animation/fcurves/channel_target.py:gather_fcurve_channel_target()`](https://github.com/KhronosGroup/glTF-Blender-IO/blob/main/addons/io_scene_gltf2/blender/exp/animation/fcurves/channel_target.py#L39) * Again in [`exp/animation/fcurves/channels.py:gather_animation_fcurves_channels()`](https://github.com/KhronosGroup/glTF-Blender-IO/blob/main/addons/io_scene_gltf2/blender/exp/animation/fcurves/channels.py#L298) Based on naming conventions alone, I...
**Describe the bug** The current document for writing a extensions are lacking key information: * For each hook, what are the data types passed to the handler? * For each...
When adding an epilog to a group, the text appears to be indented under the commands list. ```python @click.group( context_settings={"max_content_width": 100, "show_default": True}, epilog="""\b Example Usage: # Run this stuff...
I'd love to use the `\f` and `\b` in my docstrings to have a single source of help text. However, [Ruff D301](https://docs.astral.sh/ruff/rules/escape-sequence-in-docstring/) enforces [PEP 257](https://peps.python.org/pep-0257/#what-is-a-docstring) which requires docstrings to be...