Write documentation for new canvas module

This commit is contained in:
Héctor Ramón Jiménez 2020-02-18 08:48:54 +01:00
parent 570f769744
commit 9c067562fa
17 changed files with 434 additions and 196 deletions

View file

@ -22,7 +22,7 @@ pub fn main() {
struct SolarSystem {
state: State,
solar_system: canvas::layer::Cached<State>,
solar_system: canvas::layer::Cache<State>,
}
#[derive(Debug, Clone, Copy)]
@ -38,7 +38,7 @@ impl Application for SolarSystem {
(
SolarSystem {
state: State::new(),
solar_system: canvas::layer::Cached::new(),
solar_system: canvas::layer::Cache::new(),
},
Command::none(),
)
@ -125,7 +125,7 @@ impl State {
}
}
impl canvas::layer::Drawable for State {
impl canvas::Drawable for State {
fn draw(&self, frame: &mut canvas::Frame) {
use canvas::{Fill, Path, Stroke};
use std::f32::consts::PI;