diff options
author | 2023-03-03 04:57:55 +0100 | |
---|---|---|
committer | 2023-03-03 04:57:55 +0100 | |
commit | 6cc48b5c62bac287b8f9f1c79c1fb7486c51b18f (patch) | |
tree | 7a9d57f52e3bee9f4d910c89178dc3e2917957a1 /graphics/src/geometry/path | |
parent | d13d19ba3569560edd67f20b48f37548d10ceee9 (diff) | |
download | iced-6cc48b5c62bac287b8f9f1c79c1fb7486c51b18f.tar.gz iced-6cc48b5c62bac287b8f9f1c79c1fb7486c51b18f.tar.bz2 iced-6cc48b5c62bac287b8f9f1c79c1fb7486c51b18f.zip |
Move `Canvas` and `QRCode` to `iced` crate
Rename `canvas` modules to `geometry` in graphics subcrates
Diffstat (limited to '')
-rw-r--r-- | graphics/src/geometry/path.rs (renamed from native/src/widget/canvas/path.rs) | 0 | ||||
-rw-r--r-- | graphics/src/geometry/path/arc.rs (renamed from native/src/widget/canvas/path/arc.rs) | 0 | ||||
-rw-r--r-- | graphics/src/geometry/path/builder.rs (renamed from native/src/widget/canvas/path/builder.rs) | 2 |
3 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/canvas/path.rs b/graphics/src/geometry/path.rs index 30c387c5..30c387c5 100644 --- a/native/src/widget/canvas/path.rs +++ b/graphics/src/geometry/path.rs diff --git a/native/src/widget/canvas/path/arc.rs b/graphics/src/geometry/path/arc.rs index e0747d3e..e0747d3e 100644 --- a/native/src/widget/canvas/path/arc.rs +++ b/graphics/src/geometry/path/arc.rs diff --git a/native/src/widget/canvas/path/builder.rs b/graphics/src/geometry/path/builder.rs index 84fda052..4a9c5e36 100644 --- a/native/src/widget/canvas/path/builder.rs +++ b/graphics/src/geometry/path/builder.rs @@ -1,4 +1,4 @@ -use crate::widget::canvas::path::{arc, Arc, Path}; +use crate::geometry::path::{arc, Arc, Path}; use crate::{Point, Size}; use lyon_path::builder::{self, SvgPathBuilder}; |