I need to build a shutter like this:
What is the formulas to draw each vertex?
Suppose I have num which is the number of triangles (in this case num=7) and the radius of the circle. How can I obtain the coordinates of each vertex of each triangle of the shutter?
I don't know how to obtain these coordinates.
Thank you very much

$$x=r\cos(\theta), y=r\sin(\theta), \theta = \frac{360i + offset}{num}$$
Where $i = 0,...,num-1$, and offset can 'rotate' the starting point. Look up polar coordinates or circle parametric equation.