390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
|
# File 'lib/coderunner/graphs_and_films.rb', line 390
def graphkit_from_lists_with_frame_array(frame_array, graphs, run_graphs, = {})
server = @server; @server = false
i=0
array = frame_array.map do |frame_index|
eputs "\033[2A" eputs sprintf("Fetching graphs: %2.2f", i.to_f/frame_array.size.to_f * 100.0) + "% Complete"
i+=1
[frame_index, graphkit_from_lists(graphs, run_graphs, .absorb({([:in]||[:index_name]||:frame_index) => frame_index}))]
end
return array
end
|