blob: 5b80192ec887e0ba86528081129078911c4f92a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
function [pkg] = put_text(x, y, justification, text)
code = double(strjoin({'Z', justification}, ''));
arg1 = [x, 0, y, 0];
arg2 = text;
arg3 = 0;
pkg = get_package(code, [arg1 double(arg2) arg3]);
end
|