floem_peniko/lib.rs
1// Copyright 2022 The peniko authors.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4mod blend;
5mod blob;
6mod brush;
7mod color;
8mod font;
9mod gradient;
10mod image;
11mod style;
12
13/// Re-export of the kurbo 2D curve library.
14pub use kurbo;
15
16pub use blend::{BlendMode, Compose, Mix};
17pub use blob::{Blob, WeakBlob};
18pub use brush::{Brush, BrushRef, Extend};
19pub use color::Color;
20pub use font::Font;
21pub use gradient::{ColorStop, ColorStops, ColorStopsSource, Gradient, GradientKind};
22pub use image::{Format, Image};
23pub use style::{Cap, Dashes, Fill, Join, Stroke, Style, StyleRef};