summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/yc4/display/bar_graph.m
blob: bc0440609ed46b93564b730228a71d97e37a4b04 (plain) (blame)
1
2
3
4
5
6
function pkg = bar_graph(direction, no, x1, y1, x2, y2, start_value, end_value, type, pattern)
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