Skip to content

Commit

Permalink
ellipse edges have OBO
Browse files Browse the repository at this point in the history
  • Loading branch information
zeffii authored Nov 7, 2019
1 parent 40db080 commit 12e1b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodes/generators_extended/ellipse.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def make_ellipse(self, a, b, N, phase, rotation, scale):
yy = x * sins + y * coss
verts.append((xx, yy, 0))

edges = list((i, (i + 1) % N) for i in range(N + 1))
edges = list((i, (i + 1) % N) for i in range(N))
polys = [list(range(N))]

return verts, edges, polys, f1, f2
Expand Down

0 comments on commit 12e1b09

Please sign in to comment.