Mercurial > repos > public > sbplib
view +parametrization/place_label.m @ 1001:514a98f9f90d feature/getBoundaryOp
Add getBoundaryOperator and getBoundaryQuadrature as abstract methods in scheme.Scheme
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 16 Jan 2019 16:35:01 +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