create a similar but bigger polygon
Show older comments
If I have a polygon say the triangle A=(1,0), B= (2,1),C = (3,0)}formed from x=[1 2 3], y=[0 1 0] using respectively the first, second and third elements of x and y vectors, how can I create a similar polygon triangle at a fixed distance from the points on the triangle?
Answers (2)
Steven Lord
on 23 Oct 2018
1 vote
For example,
triangle=polyshape(x,y);
[cx,cy]=centroid(triangle);
biggertriangle=scale(triangle,2, [cx,cy])
Categories
Find more on Polygonal Shapes in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!