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