mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 14:58:05 +08:00
* add lots of doccomments * add conversion traits from layerdatatypes to layers * add suggested doc improvements * Code review changes Co-authored-by: Keavon Chambers <keavon@keavon.com>
19 lines
474 B
Rust
19 lines
474 B
Rust
pub mod boolean_ops;
|
|
/// Contains the [Color](color::Color) type.
|
|
pub mod color;
|
|
/// Contains constant values used by Graphene.
|
|
pub mod consts;
|
|
pub mod document;
|
|
/// Defines errors that can occur when using Graphene.
|
|
pub mod error;
|
|
/// Utilities for computing intersections.
|
|
pub mod intersection;
|
|
pub mod layers;
|
|
pub mod operation;
|
|
pub mod response;
|
|
|
|
pub use document::LayerId;
|
|
pub use error::DocumentError;
|
|
pub use operation::Operation;
|
|
pub use response::DocumentResponse;
|