2007-08-02から1日間の記事一覧

PathIteratorをひっくり返す

static class Path{ int type; float[] coords; } public static GeneralPath reversePath(PathIterator itr) Stack pathStack = new Stack(); while(!itr.isDone()){ float coords[] = new float[6]; Path path = new Path(); path.type = itr.currentSegme…