Modul:Batang: Perbedaan antara revisi
Konten dihapus Konten ditambahkan
Original script by ko:사용자:Jesusmas |
Agar tidak dapat di-click. |
||
(8 revisi perantara oleh pengguna yang sama tidak ditampilkan) | |||
Baris 1:
--Kode asli ditulis di Wikipedia Bahasa Korea oleh Jesusmas
--Fungsi untuk menggambar diagram batang horizontal.
local function drawBar (color, length, round) --
local t = require("
if length > 5000 then return '' end --
if length <= 0 then return '' end --
local rest_length = --
round == 'up' and math.ceil(length) or --pembulatan
round == 'down' and math.floor(length) or --
math.floor(length+.5) --pembulatan ke
while rest_length >= 100 do t:print('[[
--while rest_length >= 50 do t:print('[[
--while rest_length >= 30 do t:print('[[
while rest_length >= 10 do t:print('[[
--while rest_length >= 5 do t:print('[[
--while rest_length >= 3 do t:print('[[
while rest_length >= 1 do t:print('[[
return t:printall()
|