Merge pull request #1724 from TurkeyBilly/patch-2

Temporarily fix boolean operation bug
This commit is contained in:
Grant Sanderson 2022-01-31 08:06:27 -08:00 committed by GitHub
commit 1e2a6ffb8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ def _convert_skia_path_to_vmobject(path, vmobject):
vmobject.add_quadratic_bezier_curve_to(*points)
else:
raise Exception(f"Unsupported: {path_verb}")
return vmobject
return vmobject.reverse_points()
class Union(VMobject):