view +parametrization/place_label.m @ 1336:0666629aa183 feature/D2_boundary_opt

Add methods for creating grids with different grid point distributions for each coordinate direction, and also supports constructing periodic grids
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Fri, 13 May 2022 13:26:16 +0200
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