summaryrefslogtreecommitdiffstats
path: root/graphics/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-03 17:19:48 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-02-03 17:19:48 +0700
commitbace264bfe5e3cb5046867bd411e54969a637c79 (patch)
tree6022a8950db589b14eebd8d0242cd802a4b2fa72 /graphics/src
parentf56c8a7361ceb215bce68e88bd6ce402e2694693 (diff)
downloadiced-bace264bfe5e3cb5046867bd411e54969a637c79.tar.gz
iced-bace264bfe5e3cb5046867bd411e54969a637c79.tar.bz2
iced-bace264bfe5e3cb5046867bd411e54969a637c79.zip
Access `lyon_algorithms` indirectly through `lyon`
Diffstat (limited to 'graphics/src')
-rw-r--r--graphics/src/widget/canvas/path.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/widget/canvas/path.rs b/graphics/src/widget/canvas/path.rs
index cb7e5035..1728f060 100644
--- a/graphics/src/widget/canvas/path.rs
+++ b/graphics/src/widget/canvas/path.rs
@@ -10,8 +10,8 @@ pub use builder::Builder;
use crate::canvas::LineDash;
use iced_native::{Point, Size};
+use lyon::algorithms::walk::{walk_along_path, RepeatedPattern};
use lyon::path::iterator::PathIterator;
-use lyon_algorithms::walk::{walk_along_path, RepeatedPattern};
/// An immutable set of points that may or may not be connected.
///
@@ -83,7 +83,7 @@ pub(super) fn dashed(path: &Path, line_dash: LineDash<'_>) -> Path {
path.raw().iter().flattened(0.01),
0.0,
&mut RepeatedPattern {
- callback: |position: lyon_algorithms::math::Point,
+ callback: |position: lyon::algorithms::math::Point,
_tangent,
_distance| {
let point = Point {