diff options
author | 2024-03-16 16:52:21 +0100 | |
---|---|---|
committer | 2024-03-16 16:52:21 +0100 | |
commit | bad3b1ac4777b4d9b57c6ba9473fb97753a77124 (patch) | |
tree | b5675155923b3576df03a6ed67d0943807a38493 /tiny_skia | |
parent | 348e00e11cd976a16493f4ce693db614886c1ecd (diff) | |
download | iced-bad3b1ac4777b4d9b57c6ba9473fb97753a77124.tar.gz iced-bad3b1ac4777b4d9b57c6ba9473fb97753a77124.tar.bz2 iced-bad3b1ac4777b4d9b57c6ba9473fb97753a77124.zip |
Show name of current `Theme` in `clock` example
Diffstat (limited to 'tiny_skia')
-rw-r--r-- | tiny_skia/src/geometry.rs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tiny_skia/src/geometry.rs b/tiny_skia/src/geometry.rs index f7518731..16787f89 100644 --- a/tiny_skia/src/geometry.rs +++ b/tiny_skia/src/geometry.rs @@ -1,5 +1,7 @@ use crate::core::text::LineHeight; -use crate::core::{Pixels, Point, Rectangle, Size, Transformation, Vector}; +use crate::core::{ + Pixels, Point, Radians, Rectangle, Size, Transformation, Vector, +}; use crate::graphics::geometry::fill::{self, Fill}; use crate::graphics::geometry::stroke::{self, Stroke}; use crate::graphics::geometry::{Path, Style, Text}; @@ -192,10 +194,10 @@ impl Frame { self.transform.pre_translate(translation.x, translation.y); } - pub fn rotate(&mut self, angle: f32) { - self.transform = self - .transform - .pre_concat(tiny_skia::Transform::from_rotate(angle.to_degrees())); + pub fn rotate(&mut self, angle: impl Into<Radians>) { + self.transform = self.transform.pre_concat( + tiny_skia::Transform::from_rotate(angle.into().0.to_degrees()), + ); } pub fn scale(&mut self, scale: impl Into<f32>) { |