mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Merge branch 'master' of github.com:3b1b/manim
This commit is contained in:
commit
d1fc6c8ed7
3 changed files with 3 additions and 4 deletions
|
@ -240,8 +240,8 @@ def register_font(font_file: typing.Union[str, Path]):
|
|||
-----
|
||||
This method of adding font files also works with :class:`CairoText`.
|
||||
.. important ::
|
||||
This method isn't available for macOS. Using this
|
||||
method on macOS will raise an :class:`AttributeError`.
|
||||
This method is available for macOS for ``ManimPango>=v0.2.3``. Using this
|
||||
method with previous releases will raise an :class:`AttributeError` on macOS.
|
||||
"""
|
||||
|
||||
input_folder = Path(get_downloads_dir()).parent.resolve()
|
||||
|
|
|
@ -272,7 +272,7 @@ class Scene(object):
|
|||
times,
|
||||
total=n_iterations,
|
||||
leave=self.leave_progress_bars,
|
||||
ascii=False if platform.system() != 'Windows' else True
|
||||
ascii=True if platform.system() == 'Windows' else None
|
||||
)
|
||||
return time_progression
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@ argparse
|
|||
colour
|
||||
numpy
|
||||
Pillow
|
||||
progressbar
|
||||
scipy
|
||||
sympy
|
||||
tqdm
|
||||
|
|
Loading…
Add table
Reference in a new issue