view +parametrization/place_label.m @ 1314:58df4a35fe43 feature/poroelastic

Add traction operators that include the viscous terms and use them to clean up the imposition of traction BC.
author Martin Almquist <malmquist@stanford.edu>
date Sat, 25 Jul 2020 15:56:31 -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