diff options
author | 2025-02-04 20:58:06 +0100 | |
---|---|---|
committer | 2025-02-04 20:58:06 +0100 | |
commit | e8020f3eaf3baec2b41847f6250d8554136e8d89 (patch) | |
tree | bc077692333b71f48a7efe984db60f87f9555b4c /core | |
parent | 387abafa3abda3ba68eb7a2e4ce4240ad3bdda53 (diff) | |
download | iced-e8020f3eaf3baec2b41847f6250d8554136e8d89.tar.gz iced-e8020f3eaf3baec2b41847f6250d8554136e8d89.tar.bz2 iced-e8020f3eaf3baec2b41847f6250d8554136e8d89.zip |
Add `Copy` action to code blocks in `markdown` example
Diffstat (limited to 'core')
-rw-r--r-- | core/src/pixels.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/src/pixels.rs b/core/src/pixels.rs index a1ea0f15..7d6267cf 100644 --- a/core/src/pixels.rs +++ b/core/src/pixels.rs @@ -79,3 +79,11 @@ impl std::ops::Div<f32> for Pixels { Pixels(self.0 / rhs) } } + +impl std::ops::Div<u32> for Pixels { + type Output = Pixels; + + fn div(self, rhs: u32) -> Self { + Pixels(self.0 / rhs as f32) + } +} |