This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1pub mod canvas; 2pub mod color; 3pub mod fill; 4pub mod filter; 5pub mod layer; 6pub mod objects; 7pub mod transform; 8 9pub use canvas::Canvas; 10pub use color::{Color, ColorMapping}; 11pub use fill::{Fill, FillOperations}; 12pub use filter::{Filter, FilterType}; 13pub use layer::Layer; 14pub use objects::{ColoredObject, LineSegment, Object, ObjectSizes}; 15pub use transform::{Transformation, TransformationType};