mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
comment worldeditadditions.eta
This commit is contained in:
parent
6af8bba987
commit
1f273e4b13
1 changed files with 6 additions and 0 deletions
|
@ -31,6 +31,12 @@ function worldeditadditions.get_ms_time()
|
|||
return minetest.get_us_time() / 1000
|
||||
end
|
||||
|
||||
--- Calculates the estimated time remaining from a list of times.
|
||||
-- Intended to be used where one has a number of works units, and one has a
|
||||
-- list of how long the most recent units have taken to run.
|
||||
-- @param existing_times number[] A list of times - in ms - that the most recent work units have taken.
|
||||
-- @param done_count number The number of work units completed so far.
|
||||
-- @param total_count number The total number of work units to be completed.
|
||||
function worldeditadditions.eta(existing_times, done_count, total_count)
|
||||
local max = 100
|
||||
local average = worldeditadditions.average(
|
||||
|
|
Loading…
Reference in a new issue