Fix circle `end_angle` in `clock` example

This commit is contained in:
Héctor Ramón Jiménez 2020-02-12 22:08:49 +01:00
parent 629153582f
commit 265c08661c
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ impl canvas::layer::Drawable for LocalTime {
center,
radius,
start_angle: 0.0,
end_angle: 360.0 * 2.0 * std::f32::consts::PI,
end_angle: 2.0 * std::f32::consts::PI,
})
});