1
0
mirror of https://github.com/Irev-Dev/Round-Anything.git synced 2025-08-01 13:40:14 +02:00

Change polyRoundExtrude h to length in the api for consistency

This commit is contained in:
Kurt Hutten
2020-08-16 08:35:03 +10:00
parent ad61abc74a
commit 9b235f236b
2 changed files with 4 additions and 4 deletions

View File

@@ -159,8 +159,8 @@ let(
finalPolyhedronFaces
];
module polyRoundExtrude(radiiPoints,h=5,r1=1,r2=1,fn=10,convexity=10) {
polyhedronPointsNFaces=extrudePolygonWithRadius(radiiPoints,h,r1,r2,fn);
module polyRoundExtrude(radiiPoints,length=5,r1=1,r2=1,fn=10,convexity=10) {
polyhedronPointsNFaces=extrudePolygonWithRadius(radiiPoints,length,r1,r2,fn);
polyhedron(points=polyhedronPointsNFaces[0], faces=polyhedronPointsNFaces[1], convexity=convexity);
}

View File

@@ -203,8 +203,8 @@ module radiusExtrudeExample(){
}
module polyRoundExtrudeExample(){
radiiPointsbrah=[[10,0,10],[20,20,1.1],[8,7,10],[0,7,0.3],[5,3,0.1],[-4,0,1]];
polyRoundExtrude(radiiPointsbrah,2,0.5,-0.8,fn=8);
radiiPoints=[[10,0,10],[20,20,1.1],[8,7,10],[0,7,0.3],[5,3,0.1],[-4,0,1]];
polyRoundExtrude(radiiPoints,2,0.5,-0.8,fn=8);
}
module gridpattern(memberW = 4, sqW = 12, iter = 5, r = 3){