Mercurial > repos > public > sbplib
view +grid/place_label.m @ 367:05947fc2505c feature/hypsyst
Added different operators to Utux
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Tue, 27 Dec 2016 09:11:29 +0100 |
parents | 5cb99f56f55e |
children |
line wrap: on
line source
% 'left' | 'center' | 'right' % 'baseline' | 'top' | 'cap' | 'middle' | 'bottom' function place_label(pt,str,horzAl,vertAl) default_arg('horzAl','center'); default_arg('vertAl', 'middle'); x = pt(1); y = pt(2); h = text(x,y,str); h.HorizontalAlignment = horzAl; h.VerticalAlignment = vertAl; end