view +parametrization/place_label.m @ 1033:037f203b9bf5 feature/burgers1d

Merge with branch feature/advectioRV to utilize the +rv package
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 17 Jan 2019 10:44:12 +0100
parents 0e198af1184b
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