We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See #406 for more detail.
Bezier extraction matrix fails for following spline
test = sp.BSpline( degrees=[0, 0], control_points=[ [0], [1], [2], [3], ], knot_vectors=[[0, .5, 1], [0, .5, 1]] )
The text was updated successfully, but these errors were encountered:
Is this the same reason why I cannot elevate the degree of a 0th degree BSpline?
The following code gives a segmentation fault:
test = sp.BSpline( degrees=[0], control_points=[ [0],[1],[2] ], knot_vectors=[[0, .33, 0.66, 1]] ) test.elevate_degrees([0])
Sorry, something went wrong.
No branches or pull requests
See #406 for more detail.
Bezier extraction matrix fails for following spline
The text was updated successfully, but these errors were encountered: