Fixed some imports/documentation.

This commit is contained in:
shan 2022-10-06 19:13:40 -07:00
parent 9c7bf417ac
commit 72feba51be
3 changed files with 4 additions and 7 deletions

View file

@ -10,14 +10,14 @@ use iced::application;
use iced::executor;
use iced::theme::{self, Theme};
use iced::time;
use iced::widget::canvas::{self, stroke, Cursor, Path, Stroke};
use iced::widget::canvas;
use iced::widget::canvas::{Cursor, Path, Stroke, Fill, fill, Gradient, stroke};
use iced::window;
use iced::{
Application, Color, Command, Element, Length, Point, Rectangle, Settings,
Size, Subscription, Vector,
};
use crate::canvas::{fill, Fill, Gradient};
use std::time::Instant;
pub fn main() -> iced::Result {