summaryrefslogtreecommitdiffstats
path: root/graphics/src/geometry/path/builder.rs
diff options
context:
space:
mode:
authorLibravatar kxie <kxie@ualberta.ca>2023-08-15 17:05:46 +0800
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-01-31 19:21:10 +0100
commitc077e107f2eea618ea644652707254a402527de3 (patch)
treedff9d70f26d834c2cc4f4b886bc81bc3d84a8e4d /graphics/src/geometry/path/builder.rs
parent8ed3490280a4dd8a1d4e3cd421b1785725f65865 (diff)
downloadiced-c077e107f2eea618ea644652707254a402527de3.tar.gz
iced-c077e107f2eea618ea644652707254a402527de3.tar.bz2
iced-c077e107f2eea618ea644652707254a402527de3.zip
Use `Radians` in arc and ellipse types
Diffstat (limited to 'graphics/src/geometry/path/builder.rs')
-rw-r--r--graphics/src/geometry/path/builder.rs14
1 files changed, 8 insertions, 6 deletions
diff --git a/graphics/src/geometry/path/builder.rs b/graphics/src/geometry/path/builder.rs
index b0959fbf..1ccd83f2 100644
--- a/graphics/src/geometry/path/builder.rs
+++ b/graphics/src/geometry/path/builder.rs
@@ -1,6 +1,6 @@
use crate::geometry::path::{arc, Arc, Path};
-use iced_core::{Point, Size};
+use iced_core::{Point, Radians, Size};
use lyon_path::builder::{self, SvgPathBuilder};
use lyon_path::geom;
@@ -106,9 +106,11 @@ impl Builder {
let arc = geom::Arc {
center: math::Point::new(arc.center.x, arc.center.y),
radii: math::Vector::new(arc.radii.x, arc.radii.y),
- x_rotation: math::Angle::radians(arc.rotation),
- start_angle: math::Angle::radians(arc.start_angle),
- sweep_angle: math::Angle::radians(arc.end_angle - arc.start_angle),
+ x_rotation: math::Angle::radians(arc.rotation.0),
+ start_angle: math::Angle::radians(arc.start_angle.0),
+ sweep_angle: math::Angle::radians(
+ (arc.end_angle - arc.start_angle).0,
+ ),
};
let _ = self.raw.move_to(arc.sample(0.0));
@@ -165,8 +167,8 @@ impl Builder {
self.arc(Arc {
center,
radius,
- start_angle: 0.0,
- end_angle: 2.0 * std::f32::consts::PI,
+ start_angle: Radians(0.0),
+ end_angle: Radians(2.0 * std::f32::consts::PI),
});
}