Consider the following object:
spline = BSplineCurve[{{0,1}, {1,1}, {0,1}, {-1,1}, {-1,0}}, SplineClosed->True];
Graphics[spline]
What would be an equivalent BSplineCurve object where an explicit list of knots and weights are given instead?
Similarly, for the following object:
spline2 = BSplineCurve[{{0, 1}, {1, 1}, {0, 1}, {-1, 1}, {-1, 0}}, SplineKnots -> {0, 0, 0, 1, 1, 2}, SplineClosed -> True]
although this example is not as important, as the rendering appears to have issues:


Comments
Post a Comment