pathfinder/geometry/src/lib.rs

31 lines
720 B
Rust
Raw Normal View History

2019-01-10 13:01:21 -05:00
// pathfinder/geometry/src/lib.rs
//
2019-01-10 13:01:21 -05:00
// Copyright © 2019 The Pathfinder Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2019-01-10 13:01:21 -05:00
//! Utilities for Bézier curves.
2018-11-14 13:33:53 -05:00
//!
2019-01-10 13:01:21 -05:00
//! These may be merged into upstream Lyon eventually.
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate log;
pub mod basic;
2018-11-14 13:33:53 -05:00
pub mod clip;
pub mod color;
pub mod orientation;
2019-01-14 13:59:48 -05:00
pub mod outline;
pub mod segment;
pub mod stroke;
pub mod util;
2019-02-05 23:10:20 -05:00
mod dilation;
mod unit_vector;