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