view +parametrization/old/shape_linesegments.m @ 1347:ac54767ae1fb feature/poroelastic tip

Add interface, not fully compatible.
author Martin Almquist <martin.almquist@it.uu.se>
date Tue, 30 Apr 2024 14:58:35 +0200
parents 81e0ead29431
children
line wrap: on
line source

% Converts a shape into a cell array of linesegments shorter than h.
function l = shape_linesegments(s,h)
    l = {};

    for i = 1:length(s)
        t = parametrization.curve_discretise(s{i},h);
        l = [l, parametrization.curve_linesegments(s{i},t)];
    end
end