Can I create points on polygon with specific distance between them?

9 次查看(过去 30 天)
Can someone help to make function to create points with specific distanace from each other on a polygon made of points in XY-plane with random distance between them.
for example: if I have the blue polygon made of X and Y point (file attached) as in the pictures1, can I create points (red) in as in picture 2. with distance D between them?
Picture 1
Picture 2

采纳的回答

Image Analyst
Image Analyst 2019-2-16
This is what interparc does. See John D'Errico's File Exchange: interparc
  7 个评论

请先登录,再进行评论。

更多回答(1 个)

Kevin Phung
Kevin Phung 2019-2-16
编辑:Kevin Phung 2019-2-16
depends if your y values are equally spaced in the first place.
Is this an appropriate workaround?:
% add this to your plot
hold on;
spacing= 10;
plot(xy(1:spacing:end,1),xy(1:spacing:end,2),'ro');
this is spacing the distance between each index used rather than the actual distance

类别

Help CenterFile Exchange 中查找有关 Elementary Polygons 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by