#vectorbrush
May 22, 2025 at 11:09 PM
@andyfinnell I just found your old posts on drawing brush strokes and simplification as I was researching that topic -- your explanation was super helpful to speed this up, and the sample code mirrored at https://github.com/aki-xavier/VectorBrush (because your BitBucket is gone?) was super […]
Original post on mastodon.social
mastodon.social
July 29, 2025 at 7:06 AM
layer trees are in `Document` (document/mod.rs), which contains `Layer`s (document/layer/mod.rs). the thing that mutates a `VectorPath` (vector_path/mod.rs) is a set of `Tool`s (tool/mod.rs): `Pen` (tool/pen.rs), `VectorBrush` (tool/vector_brush.rs) and `PointSelection` (tool/point_selection/mod.rs)
January 30, 2025 at 1:47 AM