rough_vello
This crate is an adapter crate between roughr and vello crates. Converts from roughr drawing primitives to vello's Scene types. Also has convenience traits for drawing onto vello scenes. For more detailed information you can check roughr crate.
Below examples are output of rough_vello adapter.
📦 Cargo.toml
[]
= "0.1"
🔧 Example
Rust Logo
use VelloGenerator;
use Scene;
use Srgba;
use ;
let options = default
.stroke
.fill
.fill_style
.fill_weight
.bowing
.build
.unwrap;
let generator = new;
let rust_logo_svg_path = "..."; // SVG path data for the Rust logo
let rust_logo_drawing = generator.;
let mut scene = new;
rust_logo_drawing.draw;
🖨️ Output Rust Logo

Filler Implementation Status
- Hachure
- Zigzag
- Cross-Hatch
- Dots
- Dashed
- Zigzag-Line
🔭 Examples
For more examples have a look at the examples folder.
🔌 Integration
Bevy Integration
For Bevy game engine integration, you can use bevy_vello which provides a Bevy plugin for vello. This allows you to render rough_vello drawings directly in your Bevy applications by converting the vello Scene to Bevy-compatible rendering.
[]
= "0.1"
= "0.1" # Check latest version
= "0.14" # Or latest compatible version
📝 License
Licensed under MIT License (LICENSE).
🚧 Contributions
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the MIT license, shall be licensed as above, without any additional terms or conditions.