Erik Hedvall

Results 29 issues of Erik Hedvall

Currently the documentation links points towards what's in the master branch, which will quite soon diverge after a release. The links should be changed to point to https://docs.rs/rustful/X/rustful/, where X...

easy

I'm expecting this to involve some design choices, so it's more of a tracking issue than something for anyone to pick up (unless you are confident enough).

This is currently blocked by some variant of rust-lang/cargo#1592 .

easy

For example `foo[]=bar1&foo[]=bar2`. This is useful enough to be supported, I think, even though it's non-standard. I don't yet have a specific design in mind, so it's wide open for...

easy

### Discussed in https://github.com/Ogeon/palette/discussions/275 Originally posted by **okaneco** March 6, 2022 I find myself rewriting boilerplate often enough that maybe it'd be nice to have upstream. The `ColorDifference` trait exists...

## Description Björn Ottosson has published more perceptually even alternatives to HSV and HSL, as described in https://bottosson.github.io/posts/colorpicker/. The conversion from other color spaces would be based on the already...

## Description Change all color types to have the component type parameter first and the meta type parameter (standard or white point) second. For example `Rgb` would become `Rgb`. The...

definitely breaking

The error message suggests that `Srgba` would need to implement `WithAlpha`, due to this: ````rust impl FromColorUnclamped for Alpha where C1::Color: IntoColorUnclamped, ```` Ideas for making it more clear: *...

documentation

## Description Add the remaining blend modes from https://www.w3.org/TR/compositing-1: hue, saturation, color, luminosity. Also try to implement them for polar color spaces, as suggested in #178, to be able to...

## Description The traits in `chromatic_adaptation` have turned out to "do too much". They both adapt white spaces and convert between color spaces. I'm thinking they could be changed to...

definitely breaking