1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-01 18:54:39 +02:00

changed parameter name

This commit is contained in:
Justin Lin
2017-05-14 13:52:48 +08:00
parent 35e781f329
commit a6edd169c1
6 changed files with 16 additions and 21 deletions

View File

@@ -14,7 +14,7 @@ Returns shape points of an isosceles trapezoid. They can be used with xxx_extrud
include <shape_trapezium.scad>;
polygon(
shape_trapezium([20, 10],
shape_trapezium([40, 20],
h = 20,
corner_r = 2)
);
@@ -31,7 +31,7 @@ Returns shape points of an isosceles trapezoid. They can be used with xxx_extrud
width = 2;
shape_pts = shape_trapezium(
[20, 10],
[40, 20],
h = 20,
corner_r = 2
);