Mercurial > repos > public > sbplib
comparison +parametrization/old/plot_shape.m @ 820:501750fbbfdb
Merge with feature/grids
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 07 Sep 2018 14:40:58 +0200 |
parents | 81e0ead29431 |
children |
comparison
equal
deleted
inserted
replaced
819:fdf0ef9150f4 | 820:501750fbbfdb |
---|---|
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) | |
9 hs{end+1} = parametrization.plot_curve(s{i},n); | |
10 end | |
11 hold off | |
12 end |