Mercurial > repos > public > sbplib
annotate +parametrization/old/plot_shape.m @ 447:ae15b72c16c1 feature/grids
Change the version function to say that we are on the feature/grids branch
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 12 Apr 2017 13:24:16 +0200 |
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 |