pathfinder/geometry/src/lib.rs

32 lines
779 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;
2018-11-14 13:33:53 -05:00
pub mod clip;
pub mod cubic_to_quadratic;
pub mod line_segment;
pub mod monotonic;
pub mod normals;
pub mod orientation;
2019-01-14 13:59:48 -05:00
pub mod outline;
pub mod point;
pub mod segment;
pub mod segments;
2019-01-12 20:13:58 -05:00
pub mod simd;
pub mod stroke;
pub mod transform;
pub mod util;