Skip to content

Commit e27b551

Browse files
committed
fix draw face
1 parent 5f66e8e commit e27b551

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas_rhino/scene/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def ngon(v):
4545
if v < 3:
4646
return
4747
if v == 3:
48-
return [0, 1, 2, 2]
48+
return [0, 1, 2]
4949
if v == 4:
5050
return [0, 1, 2, 3]
5151
return list(range(v))

0 commit comments

Comments
 (0)