static S cal_simplifiedStructure(CirclesAndLines cal) { cal = restructure(cal); for (Circle c : cal.circles) { c.x = roundToOneHundredth(c.x); c.y = roundToOneHundredth(c.y); } ret structure(cal); }