func (r *Rect) WriteSVG(out io.Writer) error {
    w, err := nexus.NewPrinter(out)
    w.Printf(
        `<rect class="%s" x="%v" y="%v" width="%v" height="%v"/>`,
        r.class, r.x, r.y, r.Width(), r.Height())