pathfinder_content/lib.rs
1// pathfinder/content/src/lib.rs
2//
3// Copyright © 2019 The Pathfinder Project Developers.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! Pathfinder's representation of a vector scene.
12//!
13//! This module also contains various path utilities.
14
15#[macro_use]
16extern crate bitflags;
17#[macro_use]
18extern crate log;
19
20pub mod clip;
21pub mod dash;
22pub mod effects;
23pub mod fill;
24pub mod gradient;
25pub mod orientation;
26pub mod outline;
27pub mod pattern;
28pub mod render_target;
29pub mod segment;
30pub mod sorted_vector;
31pub mod stroke;
32pub mod transform;
33
34mod dilation;
35mod util;