import tool.Graph2D; int graph = newGraph2D( 0, 0, 700, 700, "Graph" ) ; //変数iを1から100まで変更しながらループ for( int i=0; i<=100; i++ ){ setGraph2DFile( graph, "./test/test"+i+".tsv" ); exportGraph2D( graph, "./test/test" + i + ".png", "PNG" ); //100ミリ秒スリープ(アニメーションウェイト) sleep( 100 ); }