static Pt parseFirstPoint(S s) { L tok = javaTok(s); int i = jfind(tok, ","); if (i < 0) null; ret new Pt(parseInt(tok.get(i)), parseInt(tok.get(i+4))); }