You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the function "bezProductCoefficients"(m, n=None)" the last line of code coefMat[m*j+k, k] = binom(m, j)*binom(n, k-j)/den,
I think it should be modified as coefMat[n*j+k, k] = binom(m, j)*binom(n, k-j)/den ,
where the n is degree of second Bezier curve
The text was updated successfully, but these errors were encountered:
in the function "bezProductCoefficients"(m, n=None)" the last line of code
coefMat[m*j+k, k] = binom(m, j)*binom(n, k-j)/den
,I think it should be modified as
coefMat[n*j+k, k] = binom(m, j)*binom(n, k-j)/den
,where the n is degree of second Bezier curve
The text was updated successfully, but these errors were encountered: