view +draw/point.m @ 1255:5e2a61340d4e feature/FMMlabb

Fix boundary groups
author Ylva Rydin <ylva.rydin@telia.com>
date Wed, 22 Jan 2020 16:10:46 +0100
parents 48b6fb693025
children
line wrap: on
line source

function l = point(p)
    l = line(p(1,:),p(2,:));
    l.LineStyle = 'none';
    l.Marker = '.';
end