Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nurbs.scad
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ module debug_nurbs(control,degree,splinesteps=16,width=1, size, mult,weights,typ
assert(len(control)>=6, "Invalid NURBS parameter list")
assert(num_defined([degree,mult,weights,knots])==0,
"Cannot give degree, mult, weights or knots when you provide a NURBS parameter list")
debug_nurbs(control[2], control[1], splinesteps, width, size, weights=control[5],mult=contorl[4], type=control[0], knots=control[3],
debug_nurbs(control[2], control[1], splinesteps, width, size, weights=control[5],mult=control[4], type=control[0], knots=control[3],
show_weights=show_weights, show_knots=show_knots, show_index=show_index);
}
else {
Expand Down
Loading