Fabian Lippold

Results 10 issues of Fabian Lippold

In the palettize function when the `PaletteCreationMode` `Uniform` is used, in the corresponding function `uniformQuantization` when `maxCols` is less than 8 this causes `bitDiv3` to return `0` as at least...

There are a lot of changes in the repository, but the last release is from 8 months ago. Can the current state be released as 0.7.3?

Why is the scaling part of a Similarity not public? I don't see any good reason for that. https://github.com/dimforge/nalgebra/blob/a91e3b0d8917f3fab8486d45857119af1fd37ecd/src/geometry/similarity.rs#L53-L57 The `set_scaling` method just asserts that it is not zero, but...

I have not found any way to get a list of all users that are currently connected to a given voice channel. As far as I know, the Discord API...

When creating an embedded image with `CreateEmbedImageUpload` the url of the uploaded image will be ```hs CreateEmbedImageUpload _ -> T.filter (/=' ') $ "attachment://" createEmbedTitle place ".png" ``` or ![image](https://user-images.githubusercontent.com/43907020/200138285-f8899d69-8daf-44f4-bfe1-c9764f50e647.png)...

If NotSendSyncAcrossAllPlatforms is just there in case of some eventual future Android compatibility, why not lock it behind a feature flag? Not being able to use streams across threads is...

* Closes https://github.com/emilk/egui/issues/4434 Shouldn't break anything, because when all arguments have a 'static lifetime (required without this PR), the Plot is also 'static and can be used like before.

egui_plot

**Is your feature request related to a problem? Please describe.** Currently, all methods like `Plot::{x,y}_grid_spacer` or `Plot::{x,y}_axis_formatter` take an `impl Fn... + 'static` which is quite impractical mainly because these...

Right now the LineGauge::gauge_style.**bg** is actually applied to the **foreground** of the filled part of the line. This is rather confusing, I would suggest using two different styles (e.g. filled_style,...

enhancement
good first issue
easy-fix

For some use cases it is preferable to use a blocking API, and right now this requires everything else to be rewritten to async code. The https://crates.io/crates/maybe_async crate could help...