Skip to content

Commit

Permalink
Update svg.rs (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcarmon authored Sep 26, 2024
1 parent 2635d5b commit 6b379a0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmdapp/src/svg.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
use std::fmt;
use visioncortex::{Color, CompoundPath, PointF64};

#[derive(Clone, Debug)]
pub struct SvgFile {
pub paths: Vec<SvgPath>,
pub width: usize,
pub height: usize,
pub path_precision: Option<u32>,
}

#[derive(Clone, Debug)]
pub struct SvgPath {
pub path: CompoundPath,
pub color: Color,
Expand Down

0 comments on commit 6b379a0

Please sign in to comment.