4 Commits

Author SHA1 Message Date
TonyCrane
3883f57bf8 release: ready to release v1.4.1 2022-02-04 11:03:37 +08:00
TonyCrane
d2e0811285 import Iterable from collections.abc instead of collections 2022-02-04 10:55:59 +08:00
Grant Sanderson
1e2a6ffb8a Merge pull request #1724 from TurkeyBilly/patch-2
Temporarily fix boolean operation bug
2022-01-31 08:06:27 -08:00
Bill Xi
56e5696163 Update boolean_ops.py 2022-01-31 23:29:36 +08:00
4 changed files with 11 additions and 3 deletions

View File

@@ -1,6 +1,14 @@
Changelog
=========
v1.4.1
------
Fixed bugs
^^^^^^^^^^
- `#1724 <https://github.com/3b1b/manim/pull/1724>`__: Temporarily fixed boolean operations' bug
- `d2e0811 <https://github.com/3b1b/manim/commit/d2e0811285f7908e71a65e664fec88b1af1c6144>`__: Import ``Iterable`` from ``collections.abc`` instead of ``collections`` which is deprecated since python 3.9
v1.4.0
------

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):

View File

@@ -4,7 +4,7 @@ import random
import sys
import moderngl
from functools import wraps
from collections import Iterable
from collections.abc import Iterable
import numpy as np

View File

@@ -1,6 +1,6 @@
[metadata]
name = manimgl
version = 1.4.0
version = 1.4.1
author = Grant Sanderson
author_email= grant@3blue1brown.com
description = Animation engine for explanatory math videos