1
2
3
4
5
6
7
8
9
10
11
12
//!
//! # Describing circular arcs
//! 
//! The `arc` module provides routines for describing circular arcs and converting them to bezier
//! curves.
//!

mod circle;

pub use self::circle::*;

// TODO: represent arcs in more than 2 dimensions