static > A varyBackgroundPlusLines(A s, int w, int h) { s = cloneThroughStructure(s); if (oneIn(10)) s.background = varyColor(s.background); else if (tossCoin()) replaceRandomElement(s.things, randomLineWithColor(w, h)); else varyLineWithColor(random(s.things), w, h); ret s; }