Vector-based colour manipulators.
Find a file
2025-03-28 15:46:39 +01:00
src Add 'transfer' constructor to 'SRgb'; Add 'as_colour' and 'as_mut_colour' methods to 'Alpha'; Add 'from_rgb' constructor to 'SRgb' and 'OpRgb'; Fix 'SRgb::untransfer' not considering negative values; Update docs; 2025-03-26 13:10:23 +01:00
.gitignore Configure lints; License under MPL 2.0; Add changelog; Add Cargo manifest; Add gitignore; Add 'Srgba8' type; Add 'zerocopy' and 'bytemuck' features; Add 'serde' feature; Add 'wgpu' feature; Add 'new' and 'from_u32' constructors to 'Srgba8'; Add 'get' and 'into_u32' destructors to 'Srgba8'; Implement 'Debug' and 'Display' for 'Srgba8'; Implement 'Default' for 'Srgba8'; Implement 'From<(u8, u8, u8, u8)>' and 'From<u32>' for 'Srgba8'; Implement 'Clone' and 'Copy' for 'Srgba8'; Implement 'PartialEq', 'Eq', 'PartialOrd', and 'Ord' for 'Srgba8'; Implement 'zerocopy::FromBytes', 'zerocopy::Immutable', and 'zerocopy::IntoBytes' for 'zerocopy::Srgba8'; Implement 'bytemuck::AnyBitPattern' and 'bytemuck::NoUninit' for 'Srgba8'; Implement 'serde::Deserialize' and 'serde::Serialize' for 'Srgba8'; Implement 'From<Srgba8>' for 'wgpu::Color'; Implement 'Hash' for 'Srgba8'; Enable 'no_std'; 2025-03-08 21:23:09 +01:00
Cargo.toml Update repository link; Remove homepage link; 2025-03-28 15:46:39 +01:00
CHANGELOG.md Update repository link; Remove homepage link; 2025-03-28 15:46:39 +01:00
clippy.toml Configure lints; License under MPL 2.0; Add changelog; Add Cargo manifest; Add gitignore; Add 'Srgba8' type; Add 'zerocopy' and 'bytemuck' features; Add 'serde' feature; Add 'wgpu' feature; Add 'new' and 'from_u32' constructors to 'Srgba8'; Add 'get' and 'into_u32' destructors to 'Srgba8'; Implement 'Debug' and 'Display' for 'Srgba8'; Implement 'Default' for 'Srgba8'; Implement 'From<(u8, u8, u8, u8)>' and 'From<u32>' for 'Srgba8'; Implement 'Clone' and 'Copy' for 'Srgba8'; Implement 'PartialEq', 'Eq', 'PartialOrd', and 'Ord' for 'Srgba8'; Implement 'zerocopy::FromBytes', 'zerocopy::Immutable', and 'zerocopy::IntoBytes' for 'zerocopy::Srgba8'; Implement 'bytemuck::AnyBitPattern' and 'bytemuck::NoUninit' for 'Srgba8'; Implement 'serde::Deserialize' and 'serde::Serialize' for 'Srgba8'; Implement 'From<Srgba8>' for 'wgpu::Color'; Implement 'Hash' for 'Srgba8'; Enable 'no_std'; 2025-03-08 21:23:09 +01:00
LICENCE Configure lints; License under MPL 2.0; Add changelog; Add Cargo manifest; Add gitignore; Add 'Srgba8' type; Add 'zerocopy' and 'bytemuck' features; Add 'serde' feature; Add 'wgpu' feature; Add 'new' and 'from_u32' constructors to 'Srgba8'; Add 'get' and 'into_u32' destructors to 'Srgba8'; Implement 'Debug' and 'Display' for 'Srgba8'; Implement 'Default' for 'Srgba8'; Implement 'From<(u8, u8, u8, u8)>' and 'From<u32>' for 'Srgba8'; Implement 'Clone' and 'Copy' for 'Srgba8'; Implement 'PartialEq', 'Eq', 'PartialOrd', and 'Ord' for 'Srgba8'; Implement 'zerocopy::FromBytes', 'zerocopy::Immutable', and 'zerocopy::IntoBytes' for 'zerocopy::Srgba8'; Implement 'bytemuck::AnyBitPattern' and 'bytemuck::NoUninit' for 'Srgba8'; Implement 'serde::Deserialize' and 'serde::Serialize' for 'Srgba8'; Implement 'From<Srgba8>' for 'wgpu::Color'; Implement 'Hash' for 'Srgba8'; Enable 'no_std'; 2025-03-08 21:23:09 +01:00
README.md Replace 'Srgba8' with generic 'Rgba'; Add 'Component' trait; Add 'f16' and 'f128' features; Add 'to_u32' conversion destructor to 'Rgba<u8>'; Add 'from_u32' constructor to 'Rgba<u8>'; Replace 'zerocopy::FromBytes' with 'zerocopy::FromZeros' for 'Rgba'; Replace 'bytemuck::AnyBitPattern' with 'bytemuck::Zeroable' for 'Rgba'; Do not implement 'bytemuck::NoUninit' for 'Rgba'; Implement 'Display' for 'Rgba<u8>'; Implement 'Component' for 'u8', 'i8', 'u16', 'i16', 'u32', 'i32', 'u64', 'i64', 'u128', 'i128', 'f16', 'f32', 'f64', and 'f128'; Implement 'FromStr' for 'Rgba<u8>'; Add 'error' module; Add 'RgbaU8FromStrError' error type; Add tests; Rename project to *Polywave* (from *Sibgha*); Rename 'sibgha' crate to 'polywave'; Add docs; Update lints; Add readme; Add 'to_f16_lossy', 'to_f32_lossy', 'to_f64_lossy', and 'to_f128_lossy' methods to 'Component'; 2025-03-19 11:25:23 +01:00

Polywave

Vector-based colour manipulators.