This is my notepad where i collect the useful snippets of OpenSCAD code that i use over and over. Some better curated than others, some formatted for clarity some for efficiency.
Wednesday, June 14, 2017
Perimeter Of A Regular Polygon By Inradius And N
function Perimeter_Of_A_Regular_Polygon_By_Inradius_And_N(r,N)=
2*N*r*tan(180/N);
No comments:
Post a Comment