mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-28 15:59:45 +00:00
bugfix
This commit is contained in:
parent
9db49798e4
commit
1b88fc2375
1 changed files with 1 additions and 1 deletions
|
@ -415,7 +415,7 @@ function bezier_line_intersection(bezier, line) =
|
|||
// seg = Segment number along the path. Each segment is N points long.
|
||||
// u = Parameter values for evaluating the curve, given as a single value, a list or a range.
|
||||
// N = The degree of the Bezier path curves. Cubic Bezier paths have N=3. Default: 3
|
||||
function bezpath_path_point(bezpath, seg, u, N=3) =
|
||||
function bezpath_points(bezpath, seg, u, N=3) =
|
||||
bezpath_points(select(bezpath,seg*N,(seg+1)*N), u);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue