regular_shapes: rename reg_polygon
Rename 'reg_polygon' to 'regular_polygon' to be consistent with the rest of OpenSCAD function names.
This commit is contained in:
parent
cd134456c1
commit
5ae3d5d549
|
@ -27,7 +27,15 @@ module triangle(radius)
|
||||||
polygon(points=[[-a,-o],[0,radius],[a,-o]],paths=[[0,1,2]]);
|
polygon(points=[[-a,-o],[0,radius],[a,-o]],paths=[[0,1,2]]);
|
||||||
}
|
}
|
||||||
|
|
||||||
module reg_polygon(sides,radius)
|
module reg_polygon(sides, radius) {
|
||||||
|
echo("<font color='red'>
|
||||||
|
DEPRECATED: function 'reg_polygon' is now deprecated
|
||||||
|
please use 'regular_polygon' instead</font>");
|
||||||
|
|
||||||
|
regular_polygon(sides, radius);
|
||||||
|
}
|
||||||
|
|
||||||
|
module regular_polygon(sides, radius)
|
||||||
{
|
{
|
||||||
function dia(r) = sqrt(pow(r*2,2)/2); //sqrt((r*2^2)/2) if only we had an exponention op
|
function dia(r) = sqrt(pow(r*2,2)/2); //sqrt((r*2^2)/2) if only we had an exponention op
|
||||||
if(sides<2) square([radius,0]);
|
if(sides<2) square([radius,0]);
|
||||||
|
|
Loading…
Reference in a new issue