Skip to content

Commit 6b379a0

Browse files
authored
Update svg.rs (#92)
1 parent 2635d5b commit 6b379a0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cmdapp/src/svg.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
use std::fmt;
22
use visioncortex::{Color, CompoundPath, PointF64};
33

4+
#[derive(Clone, Debug)]
45
pub struct SvgFile {
56
pub paths: Vec<SvgPath>,
67
pub width: usize,
78
pub height: usize,
89
pub path_precision: Option<u32>,
910
}
1011

12+
#[derive(Clone, Debug)]
1113
pub struct SvgPath {
1214
pub path: CompoundPath,
1315
pub color: Color,

0 commit comments

Comments
 (0)