How to write name inside polygon?

9 visualizaciones (últimos 30 días)
ZeKkEn NoName
ZeKkEn NoName el 20 de En. de 2021
Comentada: Star Strider el 21 de En. de 2021
After create a polygon how to write name inside it so you can differeniate between it and the other polygons?

Respuesta aceptada

Star Strider
Star Strider el 20 de En. de 2021
Use the text function.
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 comentarios
ZeKkEn NoName
ZeKkEn NoName el 21 de En. de 2021
Thanks
Star Strider
Star Strider el 21 de En. de 2021
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Elementary Polygons en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by