Mercurial > repos > public > sbplib
view +parametrization/place_label.m @ 1318:6650b111742d feature/poroelastic
Implement normal-tangential interface treatment in viscoElastic2d
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Sun, 26 Jul 2020 20:42:06 -0700 |
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