Mercurial > repos > public > sbplib
view +parametrization/old/shape_discretise.m @ 492:6b95a894cbd7 feature/quantumTriangles
fixed a bug in the metric coefficients but something is wrong at the boundaries
author | Ylva Rydin <ylva.rydin@telia.com> |
---|---|
date | Wed, 15 Feb 2017 11:21:04 +0100 |
parents | 81e0ead29431 |
children |
line wrap: on
line source
% Discretises a shape such that points on the curves are no further than h appart. function p = shape_discretise(s,h) p = []; for i = 1:length(s) [~,pt] = parametrization.curve_discretise(s{i},h); p = [p, pt]; end end