···1616 /// Creates an angle given an amount, and what a full turn is equal to
1717 /// ```
1818 /// use shapemaker::geometry::Angle;
1919- ///
1919+ ///
2020 /// assert_eq!(Angle::from_ratio(0.5, 1.0).degrees() as usize, 180);
2121 /// assert_eq!(Angle::from_radians(std::f32::consts::TAU).degrees() as usize, 360);
2222 /// ```
+1-1
src/lib.rs
···4040pub use rendering::{
4141 CSSRenderable, SVGAttributesRenderable, SVGRenderable, fonts,
4242};
4343+pub use synchronization::audio::MusicalDurationUnit::*;
4344pub use video::{
4445 Animation, AttachHooks, Scene, Timestamp, Video, animation, context,
4546};
4646-pub use synchronization::audio::MusicalDurationUnit::*;
47474848trait Toggleable {
4949 fn toggle(&mut self);