Hello, I'm making a design made from a polyhedron and am needing to make regular polygons having same side length. I have a V1 script to do that and before to port it to V2, I was wondering whether it could be done straightly using
a function to compute the radius depending on the side length and the number of segments.
Do you thing such function is possible ?
function RegularPolygon(sideLength, sidesCount){
let R = ...
return circle ({radius: R, segments: sidesCount})
}
But on the other side, maybe is it better to stop using the segment trick, and by the way, I remember that there is star(), but isn't there it's counterpart that would create regular polygon ?