Skip to content

Commit

Permalink
Do not output numpy by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
portnov committed Oct 19, 2024
1 parent 3fe64bb commit 8bb2953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/curve/nurbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ def concatenate_non_fractured(segments, start_ts):
if is_fracture(prev_segment, segment):
new_segments.append(prev_segment)
split_ts.append(split_t)
split_points.append(prev_segment.get_end_point())
split_points.append(prev_segment.get_end_point().tolist())
prev_segment = segment
else:
prev_segment = prev_segment.concatenate(segment, remove_knots=True)
Expand Down

0 comments on commit 8bb2953

Please sign in to comment.