mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 22:28:16 +01:00
501 B
501 B
starburst
A 3D version of shape_starburst
.
Since: 1.2
Parameters
r1
: The outer radius of the starburst.r2
: The inner radius of the starburst.n
: The number of vertices.height
: The height of the starburst.
Examples
use <starburst.scad>;
starburst(10, 5, 5, 5);
translate([20, 0, 0]) starburst(10, 5, 6, 5);
translate([40, 0, 0]) starburst(10, 5, 12, 10);
translate([60, 0, 0]) starburst(10, 5, 4, 3);