How to write name inside polygon?
9 views (last 30 days)
Show older comments
ZeKkEn NoName
on 20 Jan 2021
Commented: Star Strider
on 21 Jan 2021
After create a polygon how to write name inside it so you can differeniate between it and the other polygons?
0 Comments
Accepted Answer
Star Strider
on 20 Jan 2021
Try this:
pgon = polyshape([1 3 5 7],[2 6 4 1]);
[xc,yc] = centroid(pgon);
figure
plot(pgon)
axis('equal')
text(xc,yc, sprintf('Polygon with centroid (%.2f, %.2f)', xc, yc), 'HorizontalAlignment','center', 'VerticalAlignment','middle')
producing:
.
2 Comments
More Answers (0)
See Also
Categories
Find more on Elementary Polygons 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!