turtle 1.0.0-alpha.2

Turtle Graphics in Rust
Documentation
extern crate piston_window;
extern crate interpolation;
extern crate fps_clock;
extern crate rand;

// Re-exported for the convenience of library users
pub use rand::*;

mod turtle_window;

mod turtle;
mod speed;
mod radians;
mod animation;
mod extensions;
mod renderer;
mod state;

pub mod color;
pub mod event;

pub use turtle::{Turtle, Point, Distance, Angle};
pub use speed::{Speed};
pub use color::{Color};
pub use event::Event;