/ src / shape_star.scad
shape_star.scad
 1  /**
 2  * shape_star.scad
 3  *
 4  * @copyright Justin Lin, 2021
 5  * @license https://opensource.org/licenses/lgpl-3.0.html
 6  *
 7  * @see https://openhome.cc/eGossip/OpenSCAD/lib3x-shape_star.html
 8  *
 9  **/
10  
11  use <_impl/_shape_star_impl.scad>
12  
13  function shape_star(outer_radius = 1, inner_radius = 0.381966, n = 5) = _shape_star_impl(outer_radius, inner_radius, n);