summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/yc4/display/bar_graph.m
blob: e7c4b2cfa1fd9d9b949fa6efcdce808011c0c48c (plain) (blame)
1
2
3
4
5
6
7
function pkg = bar_graph(direction, no, x1, y1, x2, y2, start_value, end_value, type, pattern)
pkg = []
args = [no, get_bytes(x1), get_bytes(y1), get_bytes(x2), get_bytes(y2)]
args = [args, start_value, end_value, type, pattern]  %TODO get_bytes or no ?

pkg = get_package(strjoin({'B', direction}, ''), args)
end