view +parametrization/old/shape_discretise.m @ 321:5c9e5ba1c1ab feature/beams

Clean up of d4_variable_6_2.m
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 26 Sep 2016 09:04:57 +0200
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