We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2635d5b commit 6b379a0Copy full SHA for 6b379a0
cmdapp/src/svg.rs
@@ -1,13 +1,15 @@
1
use std::fmt;
2
use visioncortex::{Color, CompoundPath, PointF64};
3
4
+#[derive(Clone, Debug)]
5
pub struct SvgFile {
6
pub paths: Vec<SvgPath>,
7
pub width: usize,
8
pub height: usize,
9
pub path_precision: Option<u32>,
10
}
11
12
13
pub struct SvgPath {
14
pub path: CompoundPath,
15
pub color: Color,
0 commit comments