|
@@ -4,7 +4,7 @@ use std::io::Write;
|
|
|
|
|
|
/// An SVG document
|
|
/// An SVG document
|
|
pub struct SVG {
|
|
pub struct SVG {
|
|
- stuff: Vec<Box<dyn AsSVG>>,
|
|
|
|
|
|
+ stuff: Vec<Box<AsSVG>>,
|
|
size: (f64, f64),
|
|
size: (f64, f64),
|
|
}
|
|
}
|
|
|
|
|
|
@@ -20,17 +20,17 @@ impl Display for Inches {
|
|
|
|
|
|
fn inches(amt: f64) -> Inches { Inches { amt } }
|
|
fn inches(amt: f64) -> Inches { Inches { amt } }
|
|
|
|
|
|
-fn xml_tag(w: &mut Vec<u8>, name: &str, attrs: &[(&str, &dyn Display)]) {
|
|
|
|
|
|
+fn xml_tag(w: &mut Vec<u8>, name: &str, attrs: &[(&str, &Display)]) {
|
|
write!(w, "<{}", name);
|
|
write!(w, "<{}", name);
|
|
- for (k, v) in attrs {
|
|
|
|
|
|
+ for &(k, v) in attrs {
|
|
write!(w, " {}=\"{}\"", k, v);
|
|
write!(w, " {}=\"{}\"", k, v);
|
|
}
|
|
}
|
|
writeln!(w, "/>");
|
|
writeln!(w, "/>");
|
|
}
|
|
}
|
|
|
|
|
|
-fn xml_open(w: &mut Vec<u8>, name: &str, attrs: &[(&str, &dyn Display)]) {
|
|
|
|
|
|
+fn xml_open(w: &mut Vec<u8>, name: &str, attrs: &[(&str, &Display)]) {
|
|
write!(w, "<{}", name);
|
|
write!(w, "<{}", name);
|
|
- for (k, v) in attrs {
|
|
|
|
|
|
+ for &(k, v) in attrs {
|
|
write!(w, " {}=\"{}\"", k, v);
|
|
write!(w, " {}=\"{}\"", k, v);
|
|
}
|
|
}
|
|
writeln!(w, ">");
|
|
writeln!(w, ">");
|
|
@@ -132,7 +132,7 @@ impl AsSVG for Line {
|
|
let mut path = Vec::new();
|
|
let mut path = Vec::new();
|
|
let (x, y) = self.start;
|
|
let (x, y) = self.start;
|
|
write!(&mut path, "M{} {}", x, y);
|
|
write!(&mut path, "M{} {}", x, y);
|
|
- for (x, y) in self.points.iter() {
|
|
|
|
|
|
+ for &(x, y) in self.points.iter() {
|
|
write!(&mut path, " L{} {}", x, y);
|
|
write!(&mut path, " L{} {}", x, y);
|
|
}
|
|
}
|
|
String::from_utf8(path).unwrap()
|
|
String::from_utf8(path).unwrap()
|