8000 use topleft for all · dragoncoder047/schemascii@206e8c9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 206e8c9

Browse files
use topleft for all
1 parent 906accb commit 206e8c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_data/blob_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def process_group(g: list[complex], all_pts: list[complex]) -> list[complex]:
191191
edges = cull_disallowed_edges(all_pts, points_to_edges(g))
192192
print(dots(g, edges))
193193
g = walk_graph_to_loop(
194-
start=max(g, key=lambda x: x.real * 65536 - x.imag),
194+
start=min(g, key=lambda x: x.real * 65536 + x.imag),
195195
start_dir=1j,
196196
edges=edges)
197197
return g

0 commit comments

Comments
 (0)
0