♻️ Move rendering a single shape to the shape itself

This commit is contained in:
Belén Albeza 2024-12-10 15:29:49 +01:00
parent 001aa3f319
commit 967bc75a1c
5 changed files with 121 additions and 72 deletions

View file

@ -2,11 +2,12 @@ use crate::math;
use skia_safe as skia;
use uuid::Uuid;
mod blend;
use crate::render::BlendMode;
mod fills;
mod images;
mod paths;
pub use blend::*;
mod render;
pub use fills::*;
pub use images::*;
pub use paths::*;