Mercurial > repos > public > sbplib
annotate +parametrization/old/shape_discretise.m @ 1287:38653d26225c feature/boundary_optimized_grids
Make accurate/minimalBoundaryOptimizedGrid take the domain limits as input
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Wed, 01 Jul 2020 14:54:21 +0200 |
parents | 81e0ead29431 |
children |
rev | line source |
---|---|
0 | 1 % Discretises a shape such that points on the curves are no further than h appart. |
2 function p = shape_discretise(s,h) | |
3 p = []; | |
4 for i = 1:length(s) | |
248
81e0ead29431
Fixed package names in +parametrization
Jonatan Werpers <jonatan@werpers.com>
parents:
151
diff
changeset
|
5 [~,pt] = parametrization.curve_discretise(s{i},h); |
0 | 6 p = [p, pt]; |
7 end | |
8 end |