Skip to content

Commit 1e2a6ff

Browse files
authored
Merge pull request #1724 from TurkeyBilly/patch-2
Temporarily fix boolean operation bug
2 parents 1ec0062 + 56e5696 commit 1e2a6ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manimlib/mobject/boolean_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _convert_skia_path_to_vmobject(path, vmobject):
4141
vmobject.add_quadratic_bezier_curve_to(*points)
4242
else:
4343
raise Exception(f"Unsupported: {path_verb}")
44-
return vmobject
44+
return vmobject.reverse_points()
4545

4646

4747
class Union(VMobject):

0 commit comments

Comments
 (0)