You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
299 B
15 lines
299 B
/**
|
|
* bezier_curve.scad
|
|
*
|
|
* @copyright Justin Lin, 2017
|
|
* @license https://opensource.org/licenses/lgpl-3.0.html
|
|
*
|
|
* @see https://openhome.cc/eGossip/OpenSCAD/lib3x-bezier_curve.html
|
|
*
|
|
**/
|
|
|
|
use <_bezier_curve_impl.scad>
|
|
|
|
|
|
|
|
function bezier_curve(t_step, points) = _bezier_curve_impl(t_step, points);
|