Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix wording in comment
  • Loading branch information
cuttlefisch committed May 10, 2024
commit ac2d58386cf66ce8600c52d3663131ac838c692e
2 changes: 1 addition & 1 deletion solid/splines.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ def hobby_points(
# as a List of Point2s
res_controls = [(points[i], c0[i], c1[i]) for i in range(1, n - 1)]
if close_loop:
# Insert the curve from the last input point
# Append the curve from the last input point
# to the first input point,
res_controls.append(
(points[n - 1], c0[n - 1], c1[0]),
Expand Down