summaryrefslogtreecommitdiffstats
path: root/Kod/bilbana/yc4/display/define_bar_graph.m
blob: d915cf1f8f081236133db6bfd6e233829c94cc53 (plain) (blame)
1
2
3
4
5
6
7
function pkg = define_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