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 region; 8pub mod shapes; 9pub mod transform; 10 11pub use canvas::Canvas; 12pub use color::{Color, ColorMapping}; 13pub use fill::{Fill, FillOperations}; 14pub use filter::{Filter, FilterType}; 15pub use layer::Layer; 16pub use objects::{Object, ObjectSizes}; 17pub use shapes::{LineSegment, Shape}; 18pub use transform::{Transformation, TransformationType};