1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 17:24:20 +02:00

Checking parameters

This commit is contained in:
Justin Lin
2019-07-29 07:47:42 +08:00
parent 5dc3132fcf
commit c0c98c125e

View File

@@ -62,6 +62,10 @@ function _bspline_curve_interpolate(t, degree, points, knots, weights) =
[for(i = 0; i < d; i = i + 1) nv[s][i] / nv[s][d]];
function bspline_curve(t_step, degree, points, knots, weights) =
let(n = len(points))
assert(degree >= 1, "degree cannot be less than 1 (linear)")
assert(degree <= n - 1, "degree must be less than or equal to len(points) - 1")
assert(len(knots) == n + degree + 1, "len(knots) must be equals to len(points) + degree + 1")
[
for(t = 0; t < 1; t = t + t_step)
_bspline_curve_interpolate(t, degree, points, knots, weights)