Mercurial > repos > public > sbplib
annotate +parametrization/old/plot_shape.m @ 1310:eb015fe9605b feature/poroelastic
Add viscoelastic displacement BC for normal-tangential. Bugfix traction BC for normal-tangential
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Mon, 20 Jul 2020 22:06:33 -0700 |
parents | 81e0ead29431 |
children |
rev | line source |
---|---|
0 | 1 % Plot a shape using n points. Returns cell array of plot handles. |
2 % hs = plot_shape(s,n) | |
3 function hs = plot_shape(s,n) | |
4 default_arg('n',100); | |
5 | |
6 hs = {}; | |
7 hold on | |
8 for i = 1:length(s) | |
248
81e0ead29431
Fixed package names in +parametrization
Jonatan Werpers <jonatan@werpers.com>
parents:
151
diff
changeset
|
9 hs{end+1} = parametrization.plot_curve(s{i},n); |
0 | 10 end |
11 hold off | |
12 end |