Skip to content

Commit

Permalink
fix wrong boundary id
Browse files Browse the repository at this point in the history
  • Loading branch information
j042 committed Sep 7, 2023
1 parent 5ab3f9f commit e13b20a
Show file tree
Hide file tree
Showing 2 changed files with 729 additions and 2 deletions.
4 changes: 2 additions & 2 deletions feigen/bspline.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def setup(self, boundary_splines):
self.end_ids = (
int(len(boundary_splines[0].cps) - 1),
int(len(boundary_splines[0].cps) - 1),
int(len(boundary_splines[1].cps) - 1),
int(len(boundary_splines[1].cps) - 1),
int(len(boundary_splines[2].cps) - 1),
int(len(boundary_splines[2].cps) - 1),
)

# this is a bit verbose and can be also done with mod but
Expand Down
Loading

0 comments on commit e13b20a

Please sign in to comment.