blob: ef548a42d6e5acd18a274521ad89d7ae88ed0256 (
plain) (
blame)
1
2
3
4
5
6
|
function pkg = draw_box(x1, y1, x2, y2, n1)
% rectangle with pattern filled and solid line around it
arg = [get_bytes(x1), get_bytes(y1), get_bytes(x2), get_bytes(y2), n1];
pkg = get_package('RO', arg);
end
|