arc.scad
1 /** 2 * arc.scad 3 * 4 * @copyright Justin Lin, 2017 5 * @license https://opensource.org/licenses/lgpl-3.0.html 6 * 7 * @see https://openhome.cc/eGossip/OpenSCAD/lib3x-arc.html 8 * 9 **/ 10 11 use <shape_arc.scad> 12 13 module arc(radius, angle, width = 1, width_mode = "LINE_CROSS") { 14 polygon(shape_arc(radius, angle, width, width_mode)); 15 }