diff options
author | 2022-07-10 18:40:11 +0200 | |
---|---|---|
committer | 2022-07-10 18:40:11 +0200 | |
commit | d1505a98d967f36679f8b7d98347ba03a4c2af1c (patch) | |
tree | b0139b1e87a7f98536c3d83cac1b99eafd0b28aa /examples/pure/arc/README.md | |
parent | 9051dd6977d045f991092e247e6bd9da40d2e793 (diff) | |
parent | 3a26a8ccd4c406b4b3f0d5c6d2863d0613798f01 (diff) | |
download | iced-d1505a98d967f36679f8b7d98347ba03a4c2af1c.tar.gz iced-d1505a98d967f36679f8b7d98347ba03a4c2af1c.tar.bz2 iced-d1505a98d967f36679f8b7d98347ba03a4c2af1c.zip |
Merge pull request #1358 from ThatsNoMoon/fix-arc_to
Fix `arc_to`
Diffstat (limited to '')
-rw-r--r-- | examples/pure/arc/README.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/pure/arc/README.md b/examples/pure/arc/README.md new file mode 100644 index 00000000..303253da --- /dev/null +++ b/examples/pure/arc/README.md @@ -0,0 +1,14 @@ +## Arc + +An application that uses the `Canvas` widget to draw a rotating arc. + +This is a simple demo for https://github.com/iced-rs/iced/pull/1358. + +The __[`main`]__ file contains all the code of the example. + +You can run it with `cargo run`: +``` +cargo run --package arc +``` + +[`main`]: src/main.rs |