ripytide
ripytide
True, perhaps if these specific conversions are really required we could offer them under an optional feature per conversion trait: - an `Extend` trait for the **extend()** conversion with an...
I ended up finding what I was looking for in another crate: [inv_arclen](https://docs.rs/kurbo/latest/kurbo/trait.ParamCurveArclen.html#method.inv_arclen) the ability to map from ArcLength to `t`.
Would making a TUI using [ratatui](https://github.com/ratatui-org/ratatui) be a good way of implementing this? I would be happy to take a shot at an implementation.
This can be closed now as it was merged in #2246
I think if we decide to add `Rgba64F` image types we might as well just add every fixed intrinsic type for completeness, `{u8,i8,u16,i16,u32,i32,u64,i64,u128,i128,f32,f64}`, that way this type of issue: "my...
If you don't mind generics then you can use `ImageBuffer` (which is what `DynamicImage` already uses in each enum variant), but generics are a leaky abstraction which can cause issues...
Fixed by the as yet unmerged PR #156
I agree with renaming `Reader` -> `ImageReader` as it a more explicit name, the `io` module also only contains three structs at the moment so I don't feel that constitutes...
Could you store the range you generated in the method inside a wrapping struct which you could then impl Iterator on to ensure the range used would always live as...
I feel this sort of thing comes down heavily to a users use-cases, for me I like having empty ranges panic because in my use-case empty ranges should be impossible...