#Polygon in a square with labels science
You have a rectangle, which you will fill with a regular polygon with a specific number of points.
From each of the points you need to draw of a certain length outside each of the points. Each of these can have different widths.
If you know the x/y position of each points, and can measure the width of the text, find the largest polygon size you can fit in the rectangle along with the labels at each point.
Express this as an x position of the centre point, and a distance between the centre of the polygon, and one of the points.



This comment has been minimized.
jolleekin commentedNov 17, 2014
The math to correctly place the labels is
Explanation:
First, let's place a point at radius
radiusand angleanglearound the center.Now, consider a text whose width and height are
textWidthandtextHeight, respectively.Equations (1) and (2) define the position of the text's center. Then, we need translate the text's center horizontally by
dxpixels and vertically bydypixels so that the text doesn't overlap the polygon.We can easily see that
Combine (1) with (3) and (2) with (4), we have (*) and (**).
Next step:
Using this math, you can calculate the smallest bouding box and then adjust the radius to have everything fit inside the container.