introvoyz041 commited on
Commit
ef9c1a3
·
verified ·
1 Parent(s): 152c957

Migrated from GitHub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. data/.codecov.yml +13 -0
  2. data/.codespell_ignorewords +5 -0
  3. data/.codespellrc +4 -0
  4. data/.dockerignore +1 -0
  5. data/.flake8 +44 -0
  6. data/.pre-commit-config.yaml +43 -0
  7. data/.pylintrc +590 -0
  8. data/.readthedocs.yml +21 -0
  9. data/CITATION.cff +13 -0
  10. data/CODE_OF_CONDUCT.md +261 -0
  11. data/CONTRIBUTING.md +3 -0
  12. data/LICENSE +21 -0
  13. data/LICENSE.community +21 -0
  14. data/crowdin.yml +3 -0
  15. data/docker/Dockerfile +59 -0
  16. data/docker/readme.md +15 -0
  17. data/docker/texlive-profile.txt +10 -0
  18. data/docs/Makefile +33 -0
  19. data/docs/html +0 -0
  20. data/docs/i18n/fr/LC_MESSAGES/index.po +52 -0
  21. data/docs/i18n/fr/LC_MESSAGES/installation.po +92 -0
  22. data/docs/i18n/gettext/changelog.pot +9 -0
  23. data/docs/i18n/gettext/changelog/0.1.0-changelog.pot +325 -0
  24. data/docs/i18n/gettext/changelog/0.1.1-changelog.pot +133 -0
  25. data/docs/i18n/gettext/changelog/0.10.0-changelog.pot +516 -0
  26. data/docs/i18n/gettext/changelog/0.11.0-changelog.pot +452 -0
  27. data/docs/i18n/gettext/changelog/0.12.0-changelog.pot +485 -0
  28. data/docs/i18n/gettext/changelog/0.13.0-changelog.pot +381 -0
  29. data/docs/i18n/gettext/changelog/0.13.1-changelog.pot +61 -0
  30. data/docs/i18n/gettext/changelog/0.14.0-changelog.pot +333 -0
  31. data/docs/i18n/gettext/changelog/0.15.0-changelog.pot +565 -0
  32. data/docs/i18n/gettext/changelog/0.15.1-changelog.pot +131 -0
  33. data/docs/i18n/gettext/changelog/0.15.2-changelog.pot +426 -0
  34. data/docs/i18n/gettext/changelog/0.16.0-changelog.pot +501 -0
  35. data/docs/i18n/gettext/changelog/0.2.0-changelog.pot +241 -0
  36. data/docs/i18n/gettext/changelog/0.3.0-changelog.pot +221 -0
  37. data/docs/i18n/gettext/changelog/0.4.0-changelog.pot +193 -0
  38. data/docs/i18n/gettext/changelog/0.5.0-changelog.pot +634 -0
  39. data/docs/i18n/gettext/changelog/0.6.0-changelog.pot +937 -0
  40. data/docs/i18n/gettext/changelog/0.7.0-changelog.pot +790 -0
  41. data/docs/i18n/gettext/changelog/0.8.0-changelog.pot +600 -0
  42. data/docs/i18n/gettext/changelog/0.9.0-changelog.pot +564 -0
  43. data/docs/i18n/gettext/conduct.pot +513 -0
  44. data/docs/i18n/gettext/contributing.pot +61 -0
  45. data/docs/i18n/gettext/contributing/admonitions.pot +77 -0
  46. data/docs/i18n/gettext/contributing/development.pot +277 -0
  47. data/docs/i18n/gettext/contributing/docstrings.pot +83 -0
  48. data/docs/i18n/gettext/contributing/examples.pot +109 -0
  49. data/docs/i18n/gettext/contributing/internationalization.pot +117 -0
  50. data/docs/i18n/gettext/contributing/performance.pot +65 -0
data/.codecov.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ codecov:
2
+ notify:
3
+ require_ci_to_pass: no
4
+ after_n_builds: 1
5
+ coverage:
6
+ status:
7
+ project:
8
+ default:
9
+ # Require 1% coverage, i.e., always succeed
10
+ target: 1
11
+ patch: true
12
+ changes: false
13
+ comment: off
data/.codespell_ignorewords ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ nam
2
+ sherif
3
+ falsy
4
+ medias
5
+ strager
data/.codespellrc ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ [codespell]
2
+ check-hidden = True
3
+ skip = .git,*.js,*.js.map,*.css,*.css.map,*.html,*.po,*.pot,uv.lock,*.log,*.svg
4
+ ignore-words = .codespell_ignorewords
data/.dockerignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .git
data/.flake8 ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [flake8]
2
+ # Exclude the grpc generated code
3
+ exclude = ./manim/grpc/gen/*, __pycache__,.git,
4
+ per-file-ignores = __init__.py:F401
5
+ max-complexity = 29
6
+ max-line-length = 88
7
+ statistics = True
8
+ # Prevents some flake8-rst-docstrings errors
9
+ rst-roles = attr,class,func,meth,mod,obj,ref,doc,exc
10
+ rst-directives = manim, SEEALSO, seealso
11
+ docstring-convention=numpy
12
+
13
+ select = A,A00,B,B9,C4,C90,D,E,F,F,PT,RST,SIM,W,F401
14
+
15
+ # General Compatibility
16
+ extend-ignore = E203, W503, D202, D212, D213, D404
17
+
18
+ # Misc
19
+ F401, F403, F405, F841, E501, E731, E402, F811, F821,
20
+
21
+ # multiple statements on one line (overload)
22
+ E704,
23
+
24
+ # Plug-in: flake8-builtins
25
+ A001, A002, A003,
26
+
27
+ # Plug-in: flake8-bugbear
28
+ B006, B007, B008, B009, B010, B903, B950,
29
+
30
+ # Plug-in: flake8-simplify
31
+ SIM105, SIM106, SIM119,
32
+
33
+ # Plug-in: flake8-pytest-style
34
+ PT001, PT004, PT006, PT011, PT018, PT022, PT023,
35
+
36
+ # Plug-in: flake8-docstrings
37
+ D100, D101, D102, D103, D104, D105, D106, D107,
38
+ D200, D202, D204, D205, D209,
39
+ D301,
40
+ D400, D401, D402, D403, D405, D406, D407, D409, D411, D412, D414,
41
+
42
+ # Plug-in: flake8-rst-docstrings
43
+ RST201, RST203, RST210, RST212, RST213, RST215,
44
+ RST301, RST303, RST499
data/.pre-commit-config.yaml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ default_stages: [pre-commit, pre-push]
2
+ fail_fast: false
3
+ exclude: ^(manim/grpc/gen/|docs/i18n/)
4
+ repos:
5
+ - repo: https://github.com/pre-commit/pre-commit-hooks
6
+ rev: v6.0.0
7
+ hooks:
8
+ - id: check-ast
9
+ name: Validate Python
10
+ - id: trailing-whitespace
11
+ - id: mixed-line-ending
12
+ - id: end-of-file-fixer
13
+ - id: check-toml
14
+ name: Validate pyproject.toml
15
+ - repo: https://github.com/astral-sh/ruff-pre-commit
16
+ rev: v0.12.9
17
+ hooks:
18
+ - id: ruff
19
+ name: ruff lint
20
+ types: [python]
21
+ args: [--exit-non-zero-on-fix]
22
+ - id: ruff-format
23
+ types: [python]
24
+ - repo: https://github.com/pre-commit/mirrors-mypy
25
+ rev: v1.17.1
26
+ hooks:
27
+ - id: mypy
28
+ additional_dependencies:
29
+ [
30
+ types-backports,
31
+ types-decorator,
32
+ types-docutils,
33
+ types-requests,
34
+ types-setuptools,
35
+ ]
36
+ files: ^manim/
37
+
38
+ - repo: https://github.com/codespell-project/codespell
39
+ rev: v2.4.1
40
+ hooks:
41
+ - id: codespell
42
+ files: ^.*\.(py|md|rst)$
43
+ args: ["-L", "medias,nam"]
data/.pylintrc ADDED
@@ -0,0 +1,590 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [MASTER]
2
+
3
+ # A comma-separated list of package or module names from where C extensions may
4
+ # be loaded. Extensions are loading into the active Python interpreter and may
5
+ # run arbitrary code.
6
+ extension-pkg-whitelist=
7
+
8
+ # Specify a score threshold to be exceeded before program exits with error.
9
+ fail-under=10.0
10
+
11
+ # Add files or directories to the blacklist. They should be base names, not
12
+ # paths.
13
+ ignore=CVS
14
+
15
+ # Add files or directories matching the regex patterns to the blacklist. The
16
+ # regex matches against base names, not paths.
17
+ ignore-patterns=
18
+
19
+ # Python code to execute, usually for sys.path manipulation such as
20
+ # pygtk.require().
21
+ #init-hook=
22
+
23
+ # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
24
+ # number of processors available to use.
25
+ jobs=1
26
+
27
+ # Control the amount of potential inferred values when inferring a single
28
+ # object. This can help the performance when dealing with large functions or
29
+ # complex, nested conditions.
30
+ limit-inference-results=100
31
+
32
+ # List of plugins (as comma separated values of python module names) to load,
33
+ # usually to register additional checkers.
34
+ load-plugins=
35
+
36
+ # Pickle collected data for later comparisons.
37
+ persistent=yes
38
+
39
+ # When enabled, pylint would attempt to guess common misconfiguration and emit
40
+ # user-friendly hints instead of false-positive error messages.
41
+ suggestion-mode=yes
42
+
43
+ # Allow loading of arbitrary C extensions. Extensions are imported into the
44
+ # active Python interpreter and may run arbitrary code.
45
+ unsafe-load-any-extension=no
46
+
47
+
48
+ [MESSAGES CONTROL]
49
+
50
+ # Only show warnings with the listed confidence levels. Leave empty to show
51
+ # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED.
52
+ confidence=
53
+
54
+ # Disable the message, report, category or checker with the given id(s). You
55
+ # can either give multiple identifiers separated by comma (,) or put this
56
+ # option multiple times (only on the command line, not in the configuration
57
+ # file where it should appear only once). You can also use "--disable=all" to
58
+ # disable everything first and then re-enable specific checks. For example, if
59
+ # you want to run only the similarities checker, you can use "--disable=all
60
+ # --enable=similarities". If you want to run only the classes checker, but have
61
+ # no Warning level messages displayed, use "--disable=all --enable=classes
62
+ # --disable=W".
63
+ disable=print-statement,
64
+ parameter-unpacking,
65
+ unpacking-in-except,
66
+ old-raise-syntax,
67
+ backtick,
68
+ long-suffix,
69
+ old-ne-operator,
70
+ old-octal-literal,
71
+ import-star-module-level,
72
+ non-ascii-bytes-literal,
73
+ raw-checker-failed,
74
+ bad-inline-option,
75
+ locally-disabled,
76
+ file-ignored,
77
+ suppressed-message,
78
+ useless-suppression,
79
+ deprecated-pragma,
80
+ use-symbolic-message-instead,
81
+ apply-builtin,
82
+ basestring-builtin,
83
+ buffer-builtin,
84
+ cmp-builtin,
85
+ coerce-builtin,
86
+ execfile-builtin,
87
+ file-builtin,
88
+ long-builtin,
89
+ raw_input-builtin,
90
+ reduce-builtin,
91
+ standarderror-builtin,
92
+ unicode-builtin,
93
+ xrange-builtin,
94
+ coerce-method,
95
+ delslice-method,
96
+ getslice-method,
97
+ setslice-method,
98
+ no-absolute-import,
99
+ old-division,
100
+ dict-iter-method,
101
+ dict-view-method,
102
+ next-method-called,
103
+ metaclass-assignment,
104
+ indexing-exception,
105
+ raising-string,
106
+ reload-builtin,
107
+ oct-method,
108
+ hex-method,
109
+ nonzero-method,
110
+ cmp-method,
111
+ input-builtin,
112
+ round-builtin,
113
+ intern-builtin,
114
+ unichr-builtin,
115
+ map-builtin-not-iterating,
116
+ zip-builtin-not-iterating,
117
+ range-builtin-not-iterating,
118
+ filter-builtin-not-iterating,
119
+ using-cmp-argument,
120
+ eq-without-hash,
121
+ div-method,
122
+ idiv-method,
123
+ rdiv-method,
124
+ exception-message-attribute,
125
+ invalid-str-codec,
126
+ sys-max-int,
127
+ bad-python3-import,
128
+ deprecated-string-function,
129
+ deprecated-str-translate-call,
130
+ deprecated-itertools-function,
131
+ deprecated-types-field,
132
+ next-method-defined,
133
+ dict-items-not-iterating,
134
+ dict-keys-not-iterating,
135
+ dict-values-not-iterating,
136
+ deprecated-operator-function,
137
+ deprecated-urllib-function,
138
+ xreadlines-attribute,
139
+ deprecated-sys-function,
140
+ exception-escape,
141
+ comprehension-escape,
142
+ fixme,
143
+ missing-function-docstring
144
+
145
+ # Enable the message, report, category or checker with the given id(s). You can
146
+ # either give multiple identifier separated by comma (,) or put this option
147
+ # multiple time (only on the command line, not in the configuration file where
148
+ # it should appear only once). See also the "--disable" option for examples.
149
+ enable=c-extension-no-member
150
+
151
+
152
+ [REPORTS]
153
+
154
+ # Python expression which should return a score less than or equal to 10. You
155
+ # have access to the variables 'error', 'warning', 'refactor', and 'convention'
156
+ # which contain the number of messages in each category, as well as 'statement'
157
+ # which is the total number of statements analyzed. This score is used by the
158
+ # global evaluation report (RP0004).
159
+ evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
160
+
161
+ # Template used to display messages. This is a python new-style format string
162
+ # used to format the message information. See doc for all details.
163
+ #msg-template=
164
+
165
+ # Set the output format. Available formats are text, parseable, colorized, json
166
+ # and msvs (visual studio). You can also give a reporter class, e.g.
167
+ # mypackage.mymodule.MyReporterClass.
168
+ output-format=text
169
+
170
+ # Tells whether to display a full report or only the messages.
171
+ reports=no
172
+
173
+ # Activate the evaluation score.
174
+ score=yes
175
+
176
+
177
+ [REFACTORING]
178
+
179
+ # Maximum number of nested blocks for function / method body
180
+ max-nested-blocks=5
181
+
182
+ # Complete name of functions that never returns. When checking for
183
+ # inconsistent-return-statements if a never returning function is called then
184
+ # it will be considered as an explicit return statement and no message will be
185
+ # printed.
186
+ never-returning-functions=sys.exit
187
+
188
+
189
+ [BASIC]
190
+
191
+ # Naming style matching correct argument names.
192
+ argument-naming-style=snake_case
193
+
194
+ # Regular expression matching correct argument names. Overrides argument-
195
+ # naming-style.
196
+ #argument-rgx=
197
+
198
+ # Naming style matching correct attribute names.
199
+ attr-naming-style=snake_case
200
+
201
+ # Regular expression matching correct attribute names. Overrides attr-naming-
202
+ # style.
203
+ #attr-rgx=
204
+
205
+ # Bad variable names which should always be refused, separated by a comma.
206
+ bad-names=foo,
207
+ bar,
208
+ baz,
209
+ toto,
210
+ tutu,
211
+ tata
212
+
213
+ # Bad variable names regexes, separated by a comma. If names match any regex,
214
+ # they will always be refused
215
+ bad-names-rgxs=
216
+
217
+ # Naming style matching correct class attribute names.
218
+ class-attribute-naming-style=any
219
+
220
+ # Regular expression matching correct class attribute names. Overrides class-
221
+ # attribute-naming-style.
222
+ #class-attribute-rgx=
223
+
224
+ # Naming style matching correct class names.
225
+ class-naming-style=PascalCase
226
+
227
+ # Regular expression matching correct class names. Overrides class-naming-
228
+ # style.
229
+ #class-rgx=
230
+
231
+ # Naming style matching correct constant names.
232
+ const-naming-style=UPPER_CASE
233
+
234
+ # Regular expression matching correct constant names. Overrides const-naming-
235
+ # style.
236
+ #const-rgx=
237
+
238
+ # Minimum line length for functions/classes that require docstrings, shorter
239
+ # ones are exempt.
240
+ docstring-min-length=-1
241
+
242
+ # Naming style matching correct function names.
243
+ function-naming-style=snake_case
244
+
245
+ # Regular expression matching correct function names. Overrides function-
246
+ # naming-style.
247
+ #function-rgx=
248
+
249
+ # Good variable names which should always be accepted, separated by a comma.
250
+ good-names=i,
251
+ j,
252
+ k,
253
+ e,
254
+ Run,
255
+ _
256
+
257
+ # Good variable names regexes, separated by a comma. If names match any regex,
258
+ # they will always be accepted
259
+ good-names-rgxs=
260
+
261
+ # Include a hint for the correct naming format with invalid-name.
262
+ include-naming-hint=no
263
+
264
+ # Naming style matching correct inline iteration names.
265
+ inlinevar-naming-style=any
266
+
267
+ # Regular expression matching correct inline iteration names. Overrides
268
+ # inlinevar-naming-style.
269
+ #inlinevar-rgx=
270
+
271
+ # Naming style matching correct method names.
272
+ method-naming-style=snake_case
273
+
274
+ # Regular expression matching correct method names. Overrides method-naming-
275
+ # style.
276
+ #method-rgx=
277
+
278
+ # Naming style matching correct module names.
279
+ module-naming-style=snake_case
280
+
281
+ # Regular expression matching correct module names. Overrides module-naming-
282
+ # style.
283
+ #module-rgx=
284
+
285
+ # Colon-delimited sets of names that determine each other's naming style when
286
+ # the name regexes allow several styles.
287
+ name-group=
288
+
289
+ # Regular expression which should only match function or class names that do
290
+ # not require a docstring.
291
+ no-docstring-rgx=^_
292
+
293
+ # List of decorators that produce properties, such as abc.abstractproperty. Add
294
+ # to this list to register other decorators that produce valid properties.
295
+ # These decorators are taken in consideration only for invalid-name.
296
+ property-classes=abc.abstractproperty
297
+
298
+ # Naming style matching correct variable names.
299
+ variable-naming-style=snake_case
300
+
301
+ # Regular expression matching correct variable names. Overrides variable-
302
+ # naming-style.
303
+ #variable-rgx=
304
+
305
+
306
+ [STRING]
307
+
308
+ # This flag controls whether inconsistent-quotes generates a warning when the
309
+ # character used as a quote delimiter is used inconsistently within a module.
310
+ check-quote-consistency=no
311
+
312
+ # This flag controls whether the implicit-str-concat should generate a warning
313
+ # on implicit string concatenation in sequences defined over several lines.
314
+ check-str-concat-over-line-jumps=no
315
+
316
+
317
+ [FORMAT]
318
+
319
+ # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
320
+ expected-line-ending-format=
321
+
322
+ # Regexp for a line that is allowed to be longer than the limit.
323
+ ignore-long-lines=^\s*(# )?<?https?://\S+>?$
324
+
325
+ # Number of spaces of indent required inside a hanging or continued line.
326
+ indent-after-paren=4
327
+
328
+ # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
329
+ # tab).
330
+ indent-string=' '
331
+
332
+ # Maximum number of characters on a single line.
333
+ max-line-length=88
334
+
335
+ # Maximum number of lines in a module.
336
+ max-module-lines=1000
337
+
338
+ # Allow the body of a class to be on the same line as the declaration if body
339
+ # contains single statement.
340
+ single-line-class-stmt=no
341
+
342
+ # Allow the body of an if to be on the same line as the test if there is no
343
+ # else.
344
+ single-line-if-stmt=no
345
+
346
+
347
+ [SPELLING]
348
+
349
+ # Limits count of emitted suggestions for spelling mistakes.
350
+ max-spelling-suggestions=4
351
+
352
+ # Spelling dictionary name. Available dictionaries: none. To make it work,
353
+ # install the python-enchant package.
354
+ spelling-dict=
355
+
356
+ # List of comma separated words that should not be checked.
357
+ spelling-ignore-words=
358
+
359
+ # A path to a file that contains the private dictionary; one word per line.
360
+ spelling-private-dict-file=
361
+
362
+ # Tells whether to store unknown words to the private dictionary (see the
363
+ # --spelling-private-dict-file option) instead of raising a message.
364
+ spelling-store-unknown-words=no
365
+
366
+
367
+ [TYPECHECK]
368
+
369
+ # List of decorators that produce context managers, such as
370
+ # contextlib.contextmanager. Add to this list to register other decorators that
371
+ # produce valid context managers.
372
+ contextmanager-decorators=contextlib.contextmanager
373
+
374
+ # List of members which are set dynamically and missed by pylint inference
375
+ # system, and so shouldn't trigger E1101 when accessed. Python regular
376
+ # expressions are accepted.
377
+ generated-members=
378
+
379
+ # Tells whether missing members accessed in mixin class should be ignored. A
380
+ # mixin class is detected if its name ends with "mixin" (case insensitive).
381
+ ignore-mixin-members=yes
382
+
383
+ # Tells whether to warn about missing members when the owner of the attribute
384
+ # is inferred to be None.
385
+ ignore-none=yes
386
+
387
+ # This flag controls whether pylint should warn about no-member and similar
388
+ # checks whenever an opaque object is returned when inferring. The inference
389
+ # can return multiple potential results while evaluating a Python object, but
390
+ # some branches might not be evaluated, which results in partial inference. In
391
+ # that case, it might be useful to still emit no-member and other checks for
392
+ # the rest of the inferred objects.
393
+ ignore-on-opaque-inference=yes
394
+
395
+ # List of class names for which member attributes should not be checked (useful
396
+ # for classes with dynamically set attributes). This supports the use of
397
+ # qualified names.
398
+ ignored-classes=optparse.Values,thread._local,_thread._local
399
+
400
+ # List of module names for which member attributes should not be checked
401
+ # (useful for modules/projects where namespaces are manipulated during runtime
402
+ # and thus existing member attributes cannot be deduced by static analysis). It
403
+ # supports qualified module names, as well as Unix pattern matching.
404
+ ignored-modules=
405
+
406
+ # Show a hint with possible names when a member name was not found. The aspect
407
+ # of finding the hint is based on edit distance.
408
+ missing-member-hint=yes
409
+
410
+ # The minimum edit distance a name should have in order to be considered a
411
+ # similar match for a missing member name.
412
+ missing-member-hint-distance=1
413
+
414
+ # The total number of similar names that should be taken in consideration when
415
+ # showing a hint for a missing member.
416
+ missing-member-max-choices=1
417
+
418
+ # List of decorators that change the signature of a decorated function.
419
+ signature-mutators=
420
+
421
+
422
+ [VARIABLES]
423
+
424
+ # List of additional names supposed to be defined in builtins. Remember that
425
+ # you should avoid defining new builtins when possible.
426
+ additional-builtins=
427
+
428
+ # Tells whether unused global variables should be treated as a violation.
429
+ allow-global-unused-variables=yes
430
+
431
+ # List of strings which can identify a callback function by name. A callback
432
+ # name must start or end with one of those strings.
433
+ callbacks=cb_,
434
+ _cb
435
+
436
+ # A regular expression matching the name of dummy variables (i.e. expected to
437
+ # not be used).
438
+ dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
439
+
440
+ # Argument names that match this expression will be ignored. Default to name
441
+ # with leading underscore.
442
+ ignored-argument-names=_.*|^ignored_|^unused_
443
+
444
+ # Tells whether we should check for unused import in __init__ files.
445
+ init-import=no
446
+
447
+ # List of qualified module names which can have objects that can redefine
448
+ # builtins.
449
+ redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
450
+
451
+
452
+ [SIMILARITIES]
453
+
454
+ # Ignore comments when computing similarities.
455
+ ignore-comments=yes
456
+
457
+ # Ignore docstrings when computing similarities.
458
+ ignore-docstrings=yes
459
+
460
+ # Ignore imports when computing similarities.
461
+ ignore-imports=no
462
+
463
+ # Minimum lines number of a similarity.
464
+ min-similarity-lines=4
465
+
466
+
467
+ [MISCELLANEOUS]
468
+
469
+ # List of note tags to take in consideration, separated by a comma.
470
+ notes=FIXME,
471
+ XXX,
472
+ TODO
473
+
474
+ # Regular expression of note tags to take in consideration.
475
+ #notes-rgx=
476
+
477
+
478
+ [LOGGING]
479
+
480
+ # The type of string formatting that logging methods do. `old` means using %
481
+ # formatting, `new` is for `{}` formatting.
482
+ logging-format-style=old
483
+
484
+ # Logging modules to check that the string format arguments are in logging
485
+ # function parameter format.
486
+ logging-modules=logging
487
+
488
+
489
+ [DESIGN]
490
+
491
+ # Maximum number of arguments for function / method.
492
+ max-args=5
493
+
494
+ # Maximum number of attributes for a class (see R0902).
495
+ max-attributes=7
496
+
497
+ # Maximum number of boolean expressions in an if statement (see R0916).
498
+ max-bool-expr=5
499
+
500
+ # Maximum number of branch for function / method body.
501
+ max-branches=12
502
+
503
+ # Maximum number of locals for function / method body.
504
+ max-locals=15
505
+
506
+ # Maximum number of parents for a class (see R0901).
507
+ max-parents=7
508
+
509
+ # Maximum number of public methods for a class (see R0904).
510
+ max-public-methods=20
511
+
512
+ # Maximum number of return / yield for function / method body.
513
+ max-returns=6
514
+
515
+ # Maximum number of statements in function / method body.
516
+ max-statements=50
517
+
518
+ # Minimum number of public methods for a class (see R0903).
519
+ min-public-methods=2
520
+
521
+
522
+ [IMPORTS]
523
+
524
+ # List of modules that can be imported at any level, not just the top level
525
+ # one.
526
+ allow-any-import-level=
527
+
528
+ # Allow wildcard imports from modules that define __all__.
529
+ allow-wildcard-with-all=no
530
+
531
+ # Analyse import fallback blocks. This can be used to support both Python 2 and
532
+ # 3 compatible code, which means that the block might have code that exists
533
+ # only in one or another interpreter, leading to false positives when analysed.
534
+ analyse-fallback-blocks=no
535
+
536
+ # Deprecated modules which should not be used, separated by a comma.
537
+ deprecated-modules=optparse,tkinter.tix
538
+
539
+ # Create a graph of external dependencies in the given file (report RP0402 must
540
+ # not be disabled).
541
+ ext-import-graph=
542
+
543
+ # Create a graph of every (i.e. internal and external) dependencies in the
544
+ # given file (report RP0402 must not be disabled).
545
+ import-graph=
546
+
547
+ # Create a graph of internal dependencies in the given file (report RP0402 must
548
+ # not be disabled).
549
+ int-import-graph=
550
+
551
+ # Force import order to recognize a module as part of the standard
552
+ # compatibility libraries.
553
+ known-standard-library=
554
+
555
+ # Force import order to recognize a module as part of a third party library.
556
+ known-third-party=enchant
557
+
558
+ # Couples of modules and preferred modules, separated by a comma.
559
+ preferred-modules=
560
+
561
+
562
+ [CLASSES]
563
+
564
+ # List of method names used to declare (i.e. assign) instance attributes.
565
+ defining-attr-methods=__init__,
566
+ __new__,
567
+ setUp,
568
+ __post_init__
569
+
570
+ # List of member names, which should be excluded from the protected access
571
+ # warning.
572
+ exclude-protected=_asdict,
573
+ _fields,
574
+ _replace,
575
+ _source,
576
+ _make
577
+
578
+ # List of valid names for the first argument in a class method.
579
+ valid-classmethod-first-arg=cls
580
+
581
+ # List of valid names for the first argument in a metaclass class method.
582
+ valid-metaclass-classmethod-first-arg=cls
583
+
584
+
585
+ [EXCEPTIONS]
586
+
587
+ # Exceptions that will emit a warning when being caught. Defaults to
588
+ # "BaseException, Exception".
589
+ overgeneral-exceptions=BaseException,
590
+ Exception
data/.readthedocs.yml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: 2
2
+
3
+ sphinx:
4
+ configuration: docs/source/conf.py
5
+
6
+ build:
7
+ os: ubuntu-22.04
8
+
9
+ tools:
10
+ python: "3.13"
11
+
12
+ apt_packages:
13
+ - libpango1.0-dev
14
+ - graphviz
15
+
16
+ python:
17
+ install:
18
+ - requirements: docs/rtd-requirements.txt
19
+ - requirements: docs/requirements.txt
20
+ - method: pip
21
+ path: .
data/CITATION.cff ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # YAML 1.2
2
+ ---
3
+ authors:
4
+ -
5
+ name: "The Manim Community Developers"
6
+ cff-version: "1.2.0"
7
+ date-released: 2025-01-20
8
+ license: MIT
9
+ message: "We acknowledge the importance of good software to support research, and we note that research becomes more valuable when it is communicated effectively. To demonstrate the value of Manim, we ask that you cite Manim in your work."
10
+ title: Manim – Mathematical Animation Framework
11
+ url: "https://www.manim.community/"
12
+ version: "v0.19.0"
13
+ ...
data/CODE_OF_CONDUCT.md ADDED
@@ -0,0 +1,261 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ # Code of Conduct
4
+
5
+
6
+
7
+ > TL;DR Be excellent to each other; we're a community after all. If you run into issues with others in our community, please [contact](https://www.manim.community/discord/) a Manim Community Dev, or Moderator.
8
+
9
+ ## Purpose
10
+
11
+ The Manim Community includes members of varying skills, languages, personalities, cultural backgrounds, and experiences from around the globe. Through these differences, we continue to grow and collectively improve upon an open-source animation engine. When working in a community, it is important to remember that you are interacting with humans on the other end of your screen. This code of conduct will guide your interactions and keep Manim a positive environment for our developers, users, and fundamentally our growing community.
12
+
13
+
14
+
15
+ ## Our Community
16
+
17
+ Members of Manim Community are respectful, open, and considerate. Behaviors that reinforce these values contribute to our positive environment, and include:
18
+
19
+ - **Being respectful.** Respectful of others, their positions, experiences, viewpoints, skills, commitments, time, and efforts.
20
+
21
+ - **Being open.** Open to collaboration, whether it's on problems, Pull Requests, issues, or otherwise.
22
+
23
+ - **Being considerate.** Considerate of their peers -- other Manim users and developers.
24
+
25
+ - **Focusing on what is best for the community.** We're respectful of the processes set forth in the community, and we work within them.
26
+
27
+ - **Showing empathy towards other community members.** We're attentive in our communications, whether in person or online, and we're tactful when approaching differing views.
28
+
29
+ - **Gracefully accepting constructive criticism.** When we disagree, we are courteous in raising our issues.
30
+
31
+ - **Using welcoming and inclusive language.** We're accepting of all who wish to take part in our activities, fostering an environment where anyone can participate and everyone can make a difference.
32
+
33
+
34
+
35
+ ## Our Standards
36
+
37
+ Every member of our community has the right to have their identity respected. Manim Community is dedicated to providing a positive environment for everyone, regardless of age, gender identity and expression, sexual orientation, disability, physical appearance, body size, ethnicity, nationality, race, religion (or lack thereof), education, or socioeconomic status.
38
+
39
+
40
+
41
+ ## Inappropriate Behavior
42
+
43
+ Examples of unacceptable behavior by participants include:
44
+
45
+ * Harassment of any participants in any form
46
+ * Deliberate intimidation, stalking, or following
47
+ * Logging or taking screenshots of online activity for harassment purposes
48
+ * Publishing others' private information, such as a physical or electronic address, without explicit permission
49
+ * Violent threats or language directed against another person
50
+ * Incitement of violence or harassment towards any individual, including encouraging a person to commit suicide or to engage in self-harm
51
+ * Creating additional online accounts in order to harass another person or circumvent a ban
52
+ * Sexual language and imagery in online communities or any conference venue, including talks
53
+ * Insults, put-downs, or jokes that are based upon stereotypes, that are exclusionary, or that hold others up for ridicule
54
+ * Excessive swearing
55
+ * Unwelcome sexual attention or advances
56
+ * Unwelcome physical contact, including simulated physical contact (eg, textual descriptions like "hug" or "backrub") without consent or after a request to stop
57
+ * Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others
58
+ * Sustained disruption of online community discussions, in-person presentations, or other in-person events
59
+ * Continued one-on-one communication after requests to cease
60
+ * Other conduct that is inappropriate for a professional audience including people of many different backgrounds
61
+ Community members asked to stop any inappropriate behavior are expected to comply immediately.
62
+
63
+
64
+
65
+ ## Manim Community Online Spaces
66
+
67
+ This Code of Conduct applies to the following online spaces:
68
+
69
+ - The [ManimCommunity GitHub Organization](https://github.com/ManimCommunity) and all of its repositories
70
+
71
+ - The Manim [Discord](https://www.manim.community/discord/)
72
+
73
+ - The Manim [Reddit](https://www.reddit.com/r/manim/)
74
+
75
+ - The Manim [Twitter](https://twitter.com/manim\_community/)
76
+
77
+ This Code of Conduct applies to every member in official Manim Community online spaces, including:
78
+
79
+ - Moderators
80
+
81
+ - Maintainers
82
+
83
+ - Developers
84
+
85
+ - Reviewers
86
+
87
+ - Contributors
88
+
89
+ - Users
90
+
91
+ - All community members
92
+
93
+
94
+
95
+ ## Consequences
96
+
97
+ If a member's behavior violates this code of conduct, the Manim Community Code of Conduct team may take any action they deem appropriate, including, but not limited to: warning the offender, temporary bans, deletion of offending messages, and expulsion from the community and its online spaces. The full list of consequences for inappropriate behavior is listed below in the Enforcement Procedures.
98
+
99
+
100
+
101
+ Thank you for helping make this a welcoming, friendly community for everyone.
102
+
103
+
104
+
105
+ ## Contact Information
106
+
107
+ If you believe someone is violating the code of conduct, or have any other concerns, please contact a Manim Community Dev, or Moderator immediately. They can be reached on Manim's Community [Discord](https://www.manim.community/discord/).
108
+
109
+
110
+
111
+
112
+
113
+ <hr style="border:2px solid gray"> </hr>
114
+ <hr style="border:2px solid gray"> </hr>
115
+
116
+
117
+ ## Enforcement Procedures
118
+
119
+ This document summarizes the procedures the Manim Community Code of Conduct team uses to enforce the Code of Conduct.
120
+
121
+
122
+
123
+ ### Summary of processes
124
+
125
+ When the team receives a report of a possible Code of Conduct violation, it will:
126
+
127
+ 1. Acknowledge the receipt of the report.
128
+ 1. Evaluate conflicts of interest.
129
+ 1. Call a meeting of code of conduct team members without a conflict of interest.
130
+ 1. Evaluate the reported incident.
131
+ 1. Propose a behavioral modification plan.
132
+ 1. Propose consequences for the reported behavior.
133
+ 1. Vote on behavioral modification plan and consequences for the reported person.
134
+ 1. Contact Manim Community moderators to approve the behavioral modification plan and consequences.
135
+ 1. Follow up with the reported person.
136
+ 1. Decide further responses.
137
+ 1. Follow up with the reporter.
138
+
139
+
140
+ ### Acknowledge the report
141
+
142
+ Reporters should receive an acknowledgment of the receipt of their report within 48 hours.
143
+
144
+
145
+
146
+ ### Conflict of interest policy
147
+
148
+ Examples of conflicts of interest include:
149
+
150
+ * You have a romantic or platonic relationship with either the reporter or the reported person. It's fine to participate if they are an acquaintance.
151
+ * The reporter or reported person is someone you work closely with. This could be someone on your team or someone who works on the same project as you.
152
+ * The reporter or reported person is a maintainer who regularly reviews your contributions
153
+ * The reporter or reported person is your metamour.
154
+ * The reporter or reported person is your family member
155
+
156
+ Committee members do not need to state why they have a conflict of interest, only that one exists. Other team members should not ask why the person has a conflict of interest.
157
+
158
+ Anyone who has a conflict of interest will remove themselves from the discussion of the incident, and recluse themselves from voting on a response to the report.
159
+
160
+
161
+
162
+ ### Evaluating a report
163
+
164
+ #### Jurisdiction
165
+
166
+ * *Is this a Code of Conduct violation?* Is this behavior on our list of inappropriate behavior? Is it borderline inappropriate behavior? Does it violate our community norms?
167
+ * *Did this occur in a space that is within our Code of Conduct's scope?* If the incident occurred outside the community, but a community member's mental health or physical safety may be negatively impacted if no action is taken, the incident may be in scope. Private conversations in community spaces are also in scope.
168
+ #### Impact
169
+
170
+ * *Did this incident occur in a private conversation or a public space?* Incidents that all community members can see will have a more negative impact.
171
+ * *Does this behavior negatively impact a marginalized group in our community?* Is the reporter a person from a marginalized group in our community? How is the reporter being negatively impacted by the reported person's behavior? Are members of the marginalized group likely to disengage with the community if no action was taken on this report?
172
+ * *Does this incident involve a community leader?* Community members often look up to community leaders to set the standard of acceptable behavior
173
+ #### Risk
174
+
175
+ * *Does this incident include sexual harassment?*
176
+ * *Does this pose a safety risk?* Does the behavior put a person's physical safety at risk? Will this incident severely negatively impact someone's mental health?
177
+ * *Is there a risk of this behavior being repeated?* Does the reported person understand why their behavior was inappropriate? Is there an established pattern of behavior from past reports?
178
+
179
+
180
+ Reports which involve higher risk or higher impact may face more severe consequences than reports which involve lower risk or lower impact.
181
+
182
+
183
+
184
+ ### Propose consequences
185
+
186
+ What follows are examples of possible consequences of an incident report. This list of consequences is not exhaustive, and the Manim Community Code of Conduct team reserves the right to take any action it deems necessary.
187
+
188
+ Possible private responses to an incident include:
189
+
190
+ * Nothing, if the behavior was determined to not be a Code of Conduct violation
191
+ * A warning
192
+ * A final warning
193
+ * Temporarily removing the reported person from the community's online space(s)
194
+ * Permanently removing the reported person from the community's online space(s)
195
+ * Publishing an account of the incident
196
+
197
+
198
+ ### Team vote
199
+
200
+ Some team members may have a conflict of interest and may be excluded from discussions of a particular incident report. Excluding those members, decisions on the behavioral modification plans and consequences will be determined by a two-thirds majority vote of the Manim Community Code of Conduct team.
201
+
202
+
203
+
204
+ ### Moderators approval
205
+
206
+ Once the team has approved the behavioral modification plans and consequences, they will communicate the recommended response to the Manim Community moderators. The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report.
207
+
208
+ Moderators are required to respond with whether they accept the recommended response to the report. If they disagree with the recommended response, they should provide a detailed response or additional context as to why they disagree. Moderators are encouraged to respond within a week.
209
+
210
+ In cases where the moderators disagree on the suggested resolution for a report, the Manim Community Code of Conduct team may choose to notify the Manim Community Moderators.
211
+
212
+
213
+
214
+ ### Follow up with the reported person
215
+
216
+ The Manim Community Code of Conduct team will work with Manim Community moderators to draft a response to the reported person. The response should contain:
217
+
218
+ * A description of the person's behavior in neutral language
219
+ * The negative impact of that behavior
220
+ * A concrete behavioral modification plan
221
+ * Any consequences of their behavior
222
+ The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report. The reported person should be discouraged from contacting the reporter to discuss the report. If they wish to apologize to the reporter, the team can accept the apology on behalf of the reporter.
223
+
224
+
225
+
226
+ ### Decide further responses
227
+
228
+ If the reported person provides additional context, the Manim Community Code of Conduct team may need to re-evaluate the behavioral modification plan and consequences.
229
+
230
+ ### Follow up with the reporter
231
+
232
+ A person who makes a report should receive a follow-up response stating what action was taken in response to the report. If the team decided no response was needed, they should provide an explanation why it was not a Code of Conduct violation. Reports that are not made in good faith (such as "reverse sexism" or "reverse racism") may receive no response.
233
+
234
+ The follow-up should be sent no later than one week after the receipt of the report. If deliberation or follow-up with the reported person takes longer than one week, the team should send a status update to the reporter.
235
+
236
+
237
+
238
+ ### Changes to Code of Conduct
239
+
240
+ When discussing a change to the Manim Community code of conduct or enforcement procedures, the Manim Community Code of Conduct team will follow this decision-making process:
241
+
242
+ * **Brainstorm options.** Team members should discuss any relevant context and brainstorm a set of possible options. It is important to provide constructive feedback without getting side-tracked from the main question.
243
+ * **Vote.** Proposed changes to the code of conduct will be decided by a two-thirds majority of all voting members of the Code of Conduct team. Team members are listed in the charter. Currently active voting members are listed in the following section.
244
+ * **Board Vote.** Once a working draft is in place for the Code of Conduct and procedures, the Code of Conduct team shall provide the Manim Community Moderators with a draft of the changes. The Manim Community Moderators will vote on the changes at a board meeting.
245
+
246
+
247
+ ### Current list of voting members
248
+
249
+ - All available Community Developers (i.e. those with "write" permissions, or above, on the Manim Community GitHub organization).
250
+
251
+
252
+
253
+ ## License
254
+
255
+ This Code of Conduct is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/).
256
+
257
+
258
+
259
+ ## Attributions
260
+
261
+ This Code of Conduct was forked from the code of conduct from the [Python Software Foundation](https://www.python.org/psf/conduct/) and adapted by Manim Community.
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Thanks for your interest in contributing!
2
+
3
+ Please read our contributing guidelines which are hosted at https://docs.manim.community/en/latest/contributing.html
data/LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2018 3Blue1Brown LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/LICENSE.community ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2024, the Manim Community Developers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/crowdin.yml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ files:
2
+ - source: /docs/i18n/gettext/**/*.pot
3
+ translation: /docs/i18n/%two_letters_code%/LC_MESSAGES/**/%file_name%.po
data/docker/Dockerfile ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ RUN apt-get update -qq \
4
+ && apt-get install --no-install-recommends -y \
5
+ build-essential \
6
+ gcc \
7
+ cmake \
8
+ libcairo2-dev \
9
+ libffi-dev \
10
+ libpango1.0-dev \
11
+ freeglut3-dev \
12
+ ffmpeg \
13
+ pkg-config \
14
+ make \
15
+ wget \
16
+ ghostscript \
17
+ fonts-noto
18
+
19
+ RUN fc-cache -fv
20
+
21
+ # setup a minimal texlive installation
22
+ COPY docker/texlive-profile.txt /tmp/
23
+ ENV PATH=/usr/local/texlive/bin/armhf-linux:/usr/local/texlive/bin/aarch64-linux:/usr/local/texlive/bin/x86_64-linux:$PATH
24
+ RUN wget -O /tmp/install-tl-unx.tar.gz http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz && \
25
+ mkdir /tmp/install-tl && \
26
+ tar -xzf /tmp/install-tl-unx.tar.gz -C /tmp/install-tl --strip-components=1 && \
27
+ /tmp/install-tl/install-tl --profile=/tmp/texlive-profile.txt \
28
+ && tlmgr install \
29
+ amsmath babel-english cbfonts-fd cm-super count1to ctex doublestroke dvisvgm everysel \
30
+ fontspec frcursive fundus-calligra gnu-freefont jknapltx latex-bin \
31
+ mathastext microtype multitoc physics prelim2e preview ragged2e relsize rsfs \
32
+ setspace standalone tipa wasy wasysym xcolor xetex xkeyval
33
+
34
+ # clone and build manim
35
+ COPY . /opt/manim
36
+ WORKDIR /opt/manim
37
+ RUN pip install --no-cache .[jupyterlab]
38
+
39
+ RUN pip install -r docs/requirements.txt
40
+
41
+ ARG NB_USER=manimuser
42
+ ARG NB_UID=1000
43
+ ENV USER=${NB_USER}
44
+ ENV NB_UID=${NB_UID}
45
+ ENV HOME=/manim
46
+
47
+ RUN adduser --disabled-password \
48
+ --gecos "Default user" \
49
+ --uid ${NB_UID} \
50
+ ${NB_USER}
51
+
52
+ # create working directory for user to mount local directory into
53
+ WORKDIR ${HOME}
54
+ USER root
55
+ RUN chown -R ${NB_USER}:${NB_USER} ${HOME}
56
+ RUN chmod 777 ${HOME}
57
+ USER ${NB_USER}
58
+
59
+ CMD [ "/bin/bash" ]
data/docker/readme.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ See the [main README](https://github.com/ManimCommunity/manim/blob/main/README.md) for some instructions on how to use this image.
2
+
3
+ # Building the image
4
+ The docker image corresponding to the checked out version of the git repository
5
+ can be built by running
6
+ ```
7
+ docker build -t manimcommunity/manim:TAG -f docker/Dockerfile .
8
+ ```
9
+ from the root directory of the repository.
10
+
11
+ Multi-platform builds are possible by running
12
+ ```
13
+ docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag manimcommunity/manim:TAG -f docker/Dockerfile .
14
+ ```
15
+ from the root directory of the repository.
data/docker/texlive-profile.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ selected_scheme scheme-minimal
2
+ TEXDIR /usr/local/texlive
3
+ TEXMFCONFIG ~/.texlive/texmf-config
4
+ TEXMFHOME ~/texmf
5
+ TEXMFLOCAL /usr/local/texlive/texmf-local
6
+ TEXMFSYSCONFIG /usr/local/texlive/texmf-config
7
+ TEXMFSYSVAR /usr/local/texlive/texmf-var
8
+ TEXMFVAR ~/.texlive/texmf-var
9
+ option_doc 0
10
+ option_src 0
data/docs/Makefile ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Minimal makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line, and also
5
+ # from the environment for the first two.
6
+ SPHINXOPTS ?=
7
+ SPHINXBUILD ?= sphinx-build
8
+
9
+ # Path base is the source directory
10
+ SOURCEDIR = .
11
+ BUILDDIR = ../build
12
+
13
+ # Put it first so that "make" without argument is like "make help".
14
+ help:
15
+ @(cd source; $(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O))
16
+
17
+ .PHONY: help Makefile i18n
18
+
19
+ # All the code is executed as if everything was launched in one shell.
20
+ .ONESHELL:
21
+ # Like make clean but also remove files generated by autosummary and
22
+ # rendered videos.
23
+ cleanall: clean
24
+ @rm source/reference/*
25
+ @rm -rf source/media
26
+ @rm -f rendering_times.csv
27
+ i18n:
28
+ @(cd source; $(SPHINXBUILD) -M gettext "$(SOURCEDIR)" ../i18n/ -t skip-manim $(SPHINXOPTS) $(O);cd ../i18n;bash stripUntranslatable.sh)
29
+
30
+ # Catch-all target: route all unknown targets to Sphinx using the new
31
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
32
+ %: Makefile
33
+ @(cd source; $(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O))
data/docs/html ADDED
File without changes
data/docs/i18n/fr/LC_MESSAGES/index.po ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: 031f65d9b7a2e83b265c23f1c4450271\n"
4
+ "MIME-Version: 1.0\n"
5
+ "Content-Type: text/plain; charset=UTF-8\n"
6
+ "Content-Transfer-Encoding: 8bit\n"
7
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
8
+ "X-Crowdin-Project: 031f65d9b7a2e83b265c23f1c4450271\n"
9
+ "X-Crowdin-Project-ID: 1\n"
10
+ "X-Crowdin-Language: fr\n"
11
+ "X-Crowdin-File: /[ManimCommunity.manim] main/docs/i18n/gettext/index.pot\n"
12
+ "X-Crowdin-File-ID: 5163\n"
13
+ "Language-Team: French\n"
14
+ "Language: fr_FR\n"
15
+ "PO-Revision-Date: 2021-11-06 12:29\n"
16
+
17
+ #: ../../source/index.rst:7
18
+ msgid "Manim Community Overview"
19
+ msgstr "Manim communauté - Vue d'ensemble"
20
+
21
+ #: ../../source/index.rst:9
22
+ msgid "Animating technical concepts is traditionally pretty tedious since it can be difficult to make the animations precise enough to convey them accurately. ``Manim`` uses Python to generate animations programmatically, making it possible to specify exactly how each one should run."
23
+ msgstr "Animer des concepts techniques est traditionellement plutôt compliqué puisqu'il est difficile de rendre les animations assez precises pour bien représenter ces concepts. ``Manim`` utilise Python pour génerer des animation en programmant, permettant de préciser de manière exacte leur execution."
24
+
25
+ #: ../../source/index.rst:14
26
+ msgid "This project is still very much a work in progress, but we hope that the information here will make it easier for newcomers to get started using ``Manim``."
27
+ msgstr "Ce projet est encore en grande partie en cours de développement, mais nous éspérons que les informations fournies ici permettront aux nouveaux venus de mieux commencer à utiliser ``Manim``."
28
+
29
+ #: ../../source/index.rst:20
30
+ msgid "All content of the docs is licensed under the MIT license. Especially for the examples you encounter: Feel free to use this code in your own projects!"
31
+ msgstr "Le contenu de ces documentations est distribué sous licence MIT. C'est aussi vrai pour les exemples présentés, vous pouvez utilisez les codes librement dans vos projets !"
32
+
33
+ #: ../../source/index.rst:23
34
+ msgid "We are curious to see the awesome projects you build using this library, feel free to share your projects with us `on Twitter <https://twitter.com/manim_community>`_, `Reddit <https://www.reddit.com/r/manim/>`_, or via `Discord <https://www.manim.community/discord/>`_."
35
+ msgstr "Nous sommes curieux de voir les super projets que vous construisez avec cette librairie, partagez-les donc avec nous `sur Twitter <https://twitter.com/manim_community>`_, `Reddit <https://www.reddit.com/r/manim/>`_, or sur `Discord <https://www.manim.community/discord/>`_. "
36
+
37
+ #: ../../source/index.rst:27
38
+ msgid "In case you publish your work made with Manim, we would appreciate if you add a link to `our homepage <https://www.manim.community>`_ or `our GitHub repository <https://github.com/ManimCommunity/manim>`_. If you use Manim in a scientific context, instructions on how to cite a particular release can be found `in our README <https://github.com/ManimCommunity/manim/blob/main/README.md>`_."
39
+ msgstr "Si vous publiez votre travail fait avec Manim, nous apprécierions si vous ajoutiez un lien vers `notre site principal <https://www.manim.community>`_ ou vers `notre repo GitHub <https://github.com/ManimCommunity/manim>`_. Si vous utilisez Manim dans un contexte scientifique, des instructions afin de citer une certaine version de Manim sont disponibles (en anglais) `dans notre fichier README <https://github.com/ManimCommunity/manim/blob/main/README.md>`_."
40
+
41
+ #: ../../source/index.rst:36
42
+ msgid "As a quick reference, here are some often used modules, classes and methods:"
43
+ msgstr "Comme rapide indications, voici certains des modules, classes et méthodes les plus utilisées:"
44
+
45
+ #: ../../source/index.rst:38
46
+ msgid "Modules: :mod:`~.moving_camera_scene`, :mod:`~.tex_mobject`, :mod:`~.geometry`,"
47
+ msgstr "Modules: :mod:`~.moving_camera_scene`, :mod:`~.tex_mobject`, :mod:`~.geometry`,"
48
+
49
+ #: ../../source/index.rst:43
50
+ msgid "Classes: :class:`~.Mobject` , :class:`~.VMobject`, :class:`~.ValueTracker`, :class:`~.MathTex`, :class:`~.Angle`, :class:`~.Tex`, :class:`~.Text`,"
51
+ msgstr "Classes: :class:`~.Mobject` , :class:`~.VMobject`, :class:`~.ValueTracker`, :class:`~.MathTex`, :class:`~.Angle`, :class:`~.Tex`, :class:`~.Text`,"
52
+
data/docs/i18n/fr/LC_MESSAGES/installation.po ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: 031f65d9b7a2e83b265c23f1c4450271\n"
4
+ "MIME-Version: 1.0\n"
5
+ "Content-Type: text/plain; charset=UTF-8\n"
6
+ "Content-Transfer-Encoding: 8bit\n"
7
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
8
+ "X-Crowdin-Project: 031f65d9b7a2e83b265c23f1c4450271\n"
9
+ "X-Crowdin-Project-ID: 1\n"
10
+ "X-Crowdin-Language: fr\n"
11
+ "X-Crowdin-File: /[ManimCommunity.manim] main/docs/i18n/gettext/installation.pot\n"
12
+ "X-Crowdin-File-ID: 5165\n"
13
+ "Language-Team: French\n"
14
+ "Language: fr_FR\n"
15
+ "PO-Revision-Date: 2021-11-06 12:29\n"
16
+
17
+ #: ../../source/installation.rst:2
18
+ msgid "Installation"
19
+ msgstr "Installation"
20
+
21
+ #: ../../source/installation.rst:4
22
+ msgid "Depending on your use case, different installation options are recommended: if you just want to play around with Manim for a bit, interactive in-browser notebooks are a really simple way of exploring the library as they require no local installation. Head over to https://try.manim.community to give our interactive tutorial a try."
23
+ msgstr "Suivant comment vous souhaitez utiliser Manim, différentes options d'installation s'offrent à vous : Si vous voulez simplement vous amuser avec, les bloc-notes interactifs sur votre navigateur sont un moyen simple d'explorer les possibilités offertes par la bibliothèque, puisqu'ils ne nécessitent pas d'installer quoi que ce soit sur votre ordinateur. Allez donc voir à l'adresse https://try.manim.community pour tester notre tutoriel interactif."
24
+
25
+ #: ../../source/installation.rst:10
26
+ msgid "Otherwise, if you intend to use Manim to work on an animation project, we recommend installing the library locally (either to your system's Python, or via Docker)."
27
+ msgstr "Sinon, si vous souhaitez utiliser Manim pour travailler sur un projet d'animation, il vaut mieux installer la bibliothèque sur votre ordinateur (sur le Python de votre sytème, ou via Docker)."
28
+
29
+ #: ../../source/installation.rst:16
30
+ msgid "Note that there are several different versions of Manim. The instructions on this website are **only** for the *community edition*. Find out more about the :doc:`differences between Manim versions <installation/versions>` if you are unsure which version you should install."
31
+ msgstr "Prenez garde, il y a plusieurs différentes versions de Manim. Les instructions sur ce site sont **seulement** pour la *version communautaire* (*community edition*). Découvrez en plus sur les :doc:`différences entre les versions de manim <installation/versions>` si vous n'êtes pas sûrs de quelle version installer."
32
+
33
+ #: ../../source/installation.rst:22
34
+ msgid ":ref:`Installing Manim to your system's Python <local-installation>`"
35
+ msgstr ":ref:`Installer Manim sur le Python de votre système <local-installation>`"
36
+
37
+ #: ../../source/installation.rst:23
38
+ msgid ":ref:`Using Manim via Docker <docker-installation>`"
39
+ msgstr ":ref:`Utiliser Manim via Docker <docker-installation>`"
40
+
41
+ #: ../../source/installation.rst:24
42
+ msgid ":ref:`Interactive Jupyter notebooks via Binder / Google Colab <interactive-online>`"
43
+ msgstr ":ref:`Blocs-notes interactifs Jupyter via Binder / Google Colab <interactive-online>`"
44
+
45
+ #: ../../source/installation.rst:31
46
+ msgid "Installing Manim locally"
47
+ msgstr "Installation de Manim sur l'ordinateur"
48
+
49
+ #: ../../source/installation.rst:33
50
+ msgid "Manim is a Python library, and it can be `installed via pip <https://pypi.org/project/manim/>`__. However, in order for Manim to work properly, some additional system dependencies need to be installed first. The following pages have operating system specific instructions for you to follow."
51
+ msgstr "Manim est une bibliothèque Python, et peut donc être `installée avec pip <https://pypi.org/project/manim/>`__. Par contre, pour que Manim fonctionne correctement, quelques dépendances doivent être installées avant. Les pages suivantes offrent les instructions à suivre selon votre système d'exploitation."
52
+
53
+ #: ../../source/installation.rst:41
54
+ msgid "Depending on your particular setup, the installation process might be slightly different. Make sure that you have tried to follow the steps on the following pages carefully, but in case you hit a wall we are happy to help: either `join our Discord <https://www.manim.community/discord/>`__, or start a new Discussion `directly on GitHub <https://github.com/ManimCommunity/manim/discussions>`__."
55
+ msgstr "Suivant la configuration particulière de votre ordinateur, le processus d'installation peut varier légèrement. Assurez-vous d'avoir essayé de suivre avec attention les étapes sur les pages ci-dessous, mais si vous faites face à un problème, nous serons heureux de vous aider : vous pouvez `rejoindre notre serveur Discord <https://www.manim.community/discord/>`__, ou vous pouvez lancer une nouvelle Discussion `directement sur GitHub <https://github.com/ManimCommunity/manim/discussions>`__."
56
+
57
+ #: ../../source/installation.rst:57
58
+ msgid "Once Manim is installed locally, you can proceed to our :doc:`quickstart guide <tutorials/quickstart>` which walks you through rendering a first simple scene."
59
+ msgstr "Une fois que Manim est installé sur votre ordinateur, vous pouvez allez lire notre :doc:`guide de démarage rapide <tutorials/quickstart>` qui va vous apprendre à rendre une première scène simpliste."
60
+
61
+ #: ../../source/installation.rst:61
62
+ msgid "As mentioned above, do not worry if there are errors or other problems: consult our :doc:`troubleshooting guide <installation/troubleshooting>` for help, or get in touch with the community via `GitHub discussions <https://github.com/ManimCommunity/manim/discussions>`__ or `Discord <https://www.manim.community/discord/>`__."
63
+ msgstr "Comme indiqué ci-dessus, ne vous inquétez pas si vous rencontrez des erreurs ou autres problèmes : consultez notre :doc:`guide de dépannage <installation/troubleshooting>` pour obtenir de l'aide, sinon, prenez contact avec la communauté via `les discussions GitHub <https://github.com/ManimCommunity/manim/discussions>`__ ou via `Discord <https://www.manim.community/discord/>`__."
64
+
65
+ #: ../../source/installation.rst:73
66
+ msgid "Using Manim via Docker"
67
+ msgstr "Utiliser Manim via Docker"
68
+
69
+ #: ../../source/installation.rst:75
70
+ msgid "`Docker <https://www.docker.com>`__ is a virtualization tool that allows the distribution of encapsulated software environments (containers)."
71
+ msgstr "`Docker <https://www.docker.com>`__ est un outil de virtualisation qui permet la distribution de logiciels en environnement confiné (*containers*)."
72
+
73
+ #: ../../source/installation.rst:78
74
+ msgid "The following pages contain more information about the docker image maintained by the community, ``manimcommunity/manim``:"
75
+ msgstr "Les pages suivantes contiennent plus d'informations à propos de l'image docker maintenue par la communauté, ``manimcommunity/manim`` :"
76
+
77
+ #: ../../source/installation.rst:89
78
+ msgid "Interactive Jupyter notebooks for your browser"
79
+ msgstr "Bloc-notes interactifs Jupyter sur votre navigateur"
80
+
81
+ #: ../../source/installation.rst:91
82
+ msgid "Manim ships with a built-in ``%%manim`` IPython magic command designed for the use within `Jupyter notebooks <https://jupyter.org>`__. Our interactive tutorial over at https://try.manim.community illustrates how Manim can be used from within a Jupyter notebook."
83
+ msgstr "Le projet Manim contient une commande IPython ``%%manim`` prévue pour être utilisée dans des `blocs-notes Jupyter <https://jupyter.org>`__. Notre tutoriel interactif à l'adresse https://try.manim.community illustre la façon d'utiliser Manim dans un bloc-notes Jupyter."
84
+
85
+ #: ../../source/installation.rst:96
86
+ msgid "The following pages explain how you can setup interactive environments like that yourself:"
87
+ msgstr "Les pages suivantes expliquent comment mettre en place de tels environnements interactifs vous-même :"
88
+
89
+ #: ../../source/installation.rst:105
90
+ msgid "Installation for developers"
91
+ msgstr "Installation pour les développeurs"
92
+
data/docs/i18n/gettext/changelog.pot ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+
data/docs/i18n/gettext/changelog/0.1.0-changelog.pot ADDED
@@ -0,0 +1,325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.1.0-changelog.rst:3
10
+ msgid "v0.1.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.1.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.1.0-changelog.rst:5
18
+ msgid "October 21, 2020"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.1.0-changelog.rst:7
22
+ msgid "This is the first release of manimce after forking from 3b1b/manim. As such, developers have focused on cleaning up and refactoring the codebase while still maintaining backwards compatibility wherever possible."
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.1.0-changelog.rst:13
26
+ msgid "New Features"
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.1.0-changelog.rst:16
30
+ msgid "Command line"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.1.0-changelog.rst:18
34
+ msgid "Output of 'manim --help' has been improved"
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.1.0-changelog.rst:19
38
+ msgid "Implement logging with the :code:`rich` library and a :code:`logger` object instead of plain ol' prints"
39
+ msgstr ""
40
+
41
+ #: ../../source/changelog/0.1.0-changelog.rst:20
42
+ msgid "Added a flag :code:`--dry_run`, which doesn't write any media"
43
+ msgstr ""
44
+
45
+ #: ../../source/changelog/0.1.0-changelog.rst:21
46
+ msgid "Allow for running manim with :code:`python3 -m manim`"
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.1.0-changelog.rst:22
50
+ msgid "Refactored Tex Template management. You can now use custom templates with command line args using :code:`--tex_template`!"
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.1.0-changelog.rst:23
54
+ msgid "Re-add :code:`--save_frames` flag, which will save each frame as a png"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.1.0-changelog.rst:24
58
+ msgid "Re-introduce manim feature that allows you to type manim code in :code:`stdin` if you pass a minus sign :code:`(-)` as filename"
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.1.0-changelog.rst:25
62
+ msgid "Added the :code:`--custom_folders` flag which yields a simpler output folder structure"
63
+ msgstr ""
64
+
65
+ #: ../../source/changelog/0.1.0-changelog.rst:26
66
+ msgid "Re-implement GIF export with the :code:`-i` flag (using this flag outputs ONLY a .gif file, and no .mp4 file)"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.1.0-changelog.rst:27
70
+ msgid "Added a :code:`--verbose` flag"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.1.0-changelog.rst:28
74
+ msgid "You can save the logs to a file by using :code:`--log_to_file`"
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.1.0-changelog.rst:29
78
+ msgid "Read :code:`tex_template` from config file if not specified by :code:`--tex_template`."
79
+ msgstr ""
80
+
81
+ #: ../../source/changelog/0.1.0-changelog.rst:30
82
+ msgid "Add experimental javascript rendering with :code:`--use_js_renderer`"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.1.0-changelog.rst:31
86
+ msgid "Add :code:`-q/--quality [k|p|h|m|l]` flag and removed :code:`-m/-l` flags."
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.1.0-changelog.rst:32
90
+ msgid "Removed :code:`--sound` flag"
91
+ msgstr ""
92
+
93
+ #: ../../source/changelog/0.1.0-changelog.rst:36
94
+ msgid "Config system"
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.1.0-changelog.rst:38
98
+ msgid "Implement a :code:`manim.cfg` config file system, that consolidates the global configuration, the command line argument parsing, and some of the constants defined in :code:`constants.py`"
99
+ msgstr ""
100
+
101
+ #: ../../source/changelog/0.1.0-changelog.rst:39
102
+ msgid "Added utilities for manipulating Manim’s :code:`.cfg` files."
103
+ msgstr ""
104
+
105
+ #: ../../source/changelog/0.1.0-changelog.rst:40
106
+ msgid "Added a subcommand structure for easier use of utilities managing :code:`.cfg` files"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.1.0-changelog.rst:41
110
+ msgid "Also some variables have been moved from ``constants.py`` to the new config system:"
111
+ msgstr ""
112
+
113
+ #: ../../source/changelog/0.1.0-changelog.rst:43
114
+ msgid "``FRAME_HEIGHT`` to ``config[\"frame_width\"]``"
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.1.0-changelog.rst:44
118
+ msgid "``TOP`` to ``config[\"frame_height\"] / 2 * UP``"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.1.0-changelog.rst:45
122
+ msgid "``BOTTOM`` to ``config[\"frame_height\"] / 2 * DOWN``"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.1.0-changelog.rst:46
126
+ msgid "``LEFT_SIDE`` to ``config[\"frame_width\"] / 2 * LEFT``"
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.1.0-changelog.rst:47
130
+ msgid "``RIGHT_SIDE`` to ``config[\"frame_width\"] / 2 * RIGHT``"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.1.0-changelog.rst:48
134
+ msgid "``self.camera.frame_rate`` to ``config[\"frame_rate\"]``"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.1.0-changelog.rst:54
138
+ msgid "Mobjects, Scenes, and Animations"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.1.0-changelog.rst:56
142
+ msgid "Add customizable left and right bracket for :code:`Matrix` mobject and :code:`set_row_colors` method for matrix mobject"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.1.0-changelog.rst:57
146
+ msgid "Add :code:`AddTeXLetterByLetter` animation"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.1.0-changelog.rst:58
150
+ msgid "Enhanced GraphScene"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.1.0-changelog.rst:60
154
+ msgid "You can now add arrow tips to axes"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.1.0-changelog.rst:61
158
+ msgid "extend axes a bit at the start and/or end"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.1.0-changelog.rst:62
162
+ msgid "have invisible axes"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.1.0-changelog.rst:63
166
+ msgid "highlight the area between two curves"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.1.0-changelog.rst:64
170
+ msgid "ThreeDScene now supports 3dillusion_camera_rotation"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.1.0-changelog.rst:65
174
+ msgid "Add :code:`z_index` for manipulating depth of Objects on scene."
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.1.0-changelog.rst:66
178
+ msgid "Add a :code:`VDict` class: a :code:`VDict` is to a :code:`VGroup` what a :code:`dict` is to a :code:`list`"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.1.0-changelog.rst:67
182
+ msgid "Added Scene-caching feature. Now, if a partial movie file is unchanged in your code, it isn’t rendered again! [HIGHLY UNSTABLE We're working on it ;)]"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.1.0-changelog.rst:68
186
+ msgid "Most :code:`get_` and :code:`set_` methods have been removed in favor of instance attributes and properties"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.1.0-changelog.rst:69
190
+ msgid "The :code:`Container` class has been made into an AbstractBaseClass, i.e. in cannot be instantiated. Instead, use one of its children classes"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.1.0-changelog.rst:70
194
+ msgid "The ``TextMobject`` and ``TexMobject`` objects have been deprecated, due to their confusing names, in favour of ``Tex`` and ``MathTex``. You can still, however, continue to use ``TextMobject`` and ``TexMobject``, albeit with Deprecation Warnings constantly reminding you to switch."
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.1.0-changelog.rst:71
198
+ msgid "Add a :code:`Variable` class for displaying text that continuously updates to reflect the value of a python variable."
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.1.0-changelog.rst:72
202
+ msgid "The ``Tex`` and ``MathTex`` objects allow you to specify a custom TexTemplate using the ``template`` keyword argument."
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.1.0-changelog.rst:73
206
+ msgid ":code:`VGroup` now supports printing the class names of contained mobjects and :code:`VDict` supports printing the internal dict of mobjects"
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.1.0-changelog.rst:74
210
+ msgid "Add all the standard easing functions"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.1.0-changelog.rst:75
214
+ msgid ":code:`Scene` now renders when :code:`Scene.render()` is called rather than upon instantiation."
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.1.0-changelog.rst:76
218
+ msgid ":code:`ValueTracker` now supports increment using the `+=` operator (in addition to the already existing `increment_value` method)"
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.1.0-changelog.rst:77
222
+ msgid "Add :class:`PangoText` for rendering texts using Pango."
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.1.0-changelog.rst:81
226
+ msgid "Documentation"
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.1.0-changelog.rst:83
230
+ msgid "Added clearer installation instructions, tutorials, examples, and API reference [WIP]"
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.1.0-changelog.rst:87
234
+ msgid "Fixes"
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.1.0-changelog.rst:89
238
+ msgid "Initialization of directories has been moved to :code:`config.py`, and a bunch of bugs associated to file structure generation have been fixed"
239
+ msgstr ""
240
+
241
+ #: ../../source/changelog/0.1.0-changelog.rst:90
242
+ msgid "Nonfunctional file :code:`media_dir.txt` has been removed"
243
+ msgstr ""
244
+
245
+ #: ../../source/changelog/0.1.0-changelog.rst:91
246
+ msgid "Nonfunctional :code:`if` statements in :code:`scene_file_writer.py` have been removed"
247
+ msgstr ""
248
+
249
+ #: ../../source/changelog/0.1.0-changelog.rst:92
250
+ msgid "Fix a bug where trying to render the example scenes without specifying the scene would show all scene objects in the library"
251
+ msgstr ""
252
+
253
+ #: ../../source/changelog/0.1.0-changelog.rst:93
254
+ msgid "Many :code:`Exceptions` have been replaced for more specific exception subclasses"
255
+ msgstr ""
256
+
257
+ #: ../../source/changelog/0.1.0-changelog.rst:94
258
+ msgid "Fixed a couple of subtle bugs in :code:`ArcBetweenPoints`"
259
+ msgstr ""
260
+
261
+ #: ../../source/changelog/0.1.0-changelog.rst:98
262
+ msgid "Of interest to developers"
263
+ msgstr ""
264
+
265
+ #: ../../source/changelog/0.1.0-changelog.rst:100
266
+ msgid "Python code formatting is now enforced by using the :code:`black` tool"
267
+ msgstr ""
268
+
269
+ #: ../../source/changelog/0.1.0-changelog.rst:101
270
+ msgid "PRs now require two approving code reviews from community devs before they can be merged"
271
+ msgstr ""
272
+
273
+ #: ../../source/changelog/0.1.0-changelog.rst:102
274
+ msgid "Added tests to ensure stuff doesn't break between commits (For developers) [Uses Github CI, and Pytest]"
275
+ msgstr ""
276
+
277
+ #: ../../source/changelog/0.1.0-changelog.rst:103
278
+ msgid "Add contribution guidelines (for developers)"
279
+ msgstr ""
280
+
281
+ #: ../../source/changelog/0.1.0-changelog.rst:104
282
+ msgid "Added autogenerated documentation with sphinx and autodoc/autosummary [WIP]"
283
+ msgstr ""
284
+
285
+ #: ../../source/changelog/0.1.0-changelog.rst:105
286
+ msgid "Made manim internally use relative imports"
287
+ msgstr ""
288
+
289
+ #: ../../source/changelog/0.1.0-changelog.rst:106
290
+ msgid "Since the introduction of the :code:`TexTemplate` class, the files :code:`tex_template.tex` and :code:`ctex_template.tex` have been removed"
291
+ msgstr ""
292
+
293
+ #: ../../source/changelog/0.1.0-changelog.rst:107
294
+ msgid "Added logging tests tools."
295
+ msgstr ""
296
+
297
+ #: ../../source/changelog/0.1.0-changelog.rst:108
298
+ msgid "Added ability to save logs in json"
299
+ msgstr ""
300
+
301
+ #: ../../source/changelog/0.1.0-changelog.rst:109
302
+ msgid "Move to Poetry."
303
+ msgstr ""
304
+
305
+ #: ../../source/changelog/0.1.0-changelog.rst:110
306
+ msgid "Colors have moved to an Enum"
307
+ msgstr ""
308
+
309
+ #: ../../source/changelog/0.1.0-changelog.rst:113
310
+ msgid "Other Changes"
311
+ msgstr ""
312
+
313
+ #: ../../source/changelog/0.1.0-changelog.rst:115
314
+ msgid "Cleanup 3b1b Specific Files"
315
+ msgstr ""
316
+
317
+ #: ../../source/changelog/0.1.0-changelog.rst:116
318
+ msgid "Rename package from manimlib to manim"
319
+ msgstr ""
320
+
321
+ #: ../../source/changelog/0.1.0-changelog.rst:117
322
+ msgid "Move all imports to :code:`__init__`, so :code:`from manim import *` replaces :code:`from manimlib.imports import *`"
323
+ msgstr ""
324
+
325
+
data/docs/i18n/gettext/changelog/0.1.1-changelog.pot ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.1.1-changelog.rst:3
10
+ msgid "v0.1.1"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.1.1-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.1.1-changelog.rst:5
18
+ msgid "December 1, 2020"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.1.1-changelog.rst:7
22
+ msgid "Changes since Manim Community release v0.1.0"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.1.1-changelog.rst:10
26
+ msgid "Plugins"
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.1.1-changelog.rst:12
30
+ msgid "Provided a standardized method for plugin discoverability, creation, installation, and usage. See the :ref:`documentation <plugins>`."
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.1.1-changelog.rst:16
34
+ msgid "Fixes"
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.1.1-changelog.rst:18
38
+ msgid "JsRender is optional to install. (via :pr:`697`)."
39
+ msgstr ""
40
+
41
+ #: ../../source/changelog/0.1.1-changelog.rst:19
42
+ msgid "Allow importing modules from the same directory as the input file when using ``manim`` from the command line (via :pr:`724`)."
43
+ msgstr ""
44
+
45
+ #: ../../source/changelog/0.1.1-changelog.rst:21
46
+ msgid "Remove some unnecessary or unpythonic methods from :class:`~.Scene` (``get_mobjects``, ``add_mobjects_among``, ``get_mobject_copies``), via :pr:`758`."
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.1.1-changelog.rst:24
50
+ msgid "Fix formatting of :class:`~.Code` (via :pr:`798`)."
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.1.1-changelog.rst:27
54
+ msgid "Configuration"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.1.1-changelog.rst:29
58
+ msgid "Removed the ``skip_animations`` config option and added the ``Renderer.skip_animations`` attribute instead (via :pr:`696`)."
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.1.1-changelog.rst:31
62
+ msgid "The global ``config`` dict has been replaced by a global ``config`` instance of the new class :class:`~.ManimConfig`. This class has a dict-like API, so this should not break user code, only make it more robust. See the Configuration tutorial for details."
63
+ msgstr ""
64
+
65
+ #: ../../source/changelog/0.1.1-changelog.rst:35
66
+ msgid "Added the option to configure a directory for external assets (via :pr:`649`)."
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.1.1-changelog.rst:39
70
+ msgid "Documentation"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.1.1-changelog.rst:41
74
+ msgid "Add ``:issue:`` and ``:pr:`` directives for simplifying linking to issues and pull requests on GitHub (via :pr:`685`)."
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.1.1-changelog.rst:43
78
+ msgid "Add a ``skip-manim`` tag for skipping the ``.. manim::`` directive when building the documentation locally (via :pr:`796`)."
79
+ msgstr ""
80
+
81
+ #: ../../source/changelog/0.1.1-changelog.rst:48
82
+ msgid "Mobjects, Scenes, and Animations"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.1.1-changelog.rst:50
86
+ msgid "The ``alignment`` attribute to Tex and MathTex has been removed in favour of ``tex_environment``."
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.1.1-changelog.rst:51
90
+ msgid ":class:`~.Text` now uses Pango for rendering. ``PangoText`` has been removed. The old implementation is still available as a fallback as :class:`~.CairoText`."
91
+ msgstr ""
92
+
93
+ #: ../../source/changelog/0.1.1-changelog.rst:52
94
+ msgid "Variations of :class:`~.Dot` have been added as :class:`~.AnnotationDot` (a bigger dot with bolder stroke) and :class:`~.LabeledDot` (a dot containing a label)."
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.1.1-changelog.rst:55
98
+ msgid "Scene.set_variables_as_attrs has been removed (via :pr:`692`)."
99
+ msgstr ""
100
+
101
+ #: ../../source/changelog/0.1.1-changelog.rst:56
102
+ msgid "Ensure that the axes for graphs (:class:`GraphScene`) always intersect (:pr:`580`)."
103
+ msgstr ""
104
+
105
+ #: ../../source/changelog/0.1.1-changelog.rst:57
106
+ msgid "Now Mobject.add_updater does not call the newly-added updater by default (use ``call_updater=True`` instead) (via :pr:`710`)"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.1.1-changelog.rst:59
110
+ msgid "VMobject now has methods to determine and change the direction of the points (via :pr:`647`)."
111
+ msgstr ""
112
+
113
+ #: ../../source/changelog/0.1.1-changelog.rst:60
114
+ msgid "Added BraceBetweenPoints (via :pr:`693`)."
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.1.1-changelog.rst:61
118
+ msgid "Added ArcPolygon and ArcPolygonFromArcs (via :pr:`707`)."
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.1.1-changelog.rst:62
122
+ msgid "Added Cutout (via :pr:`760`)."
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.1.1-changelog.rst:63
126
+ msgid "Added Mobject raise not implemented errors for dunder methods and implementations for VGroup dunder methods (via :pr:`790`)."
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.1.1-changelog.rst:64
130
+ msgid "Added :class:`~.ManimBanner` for a animated version of our logo and banner (via :pr:`729`)"
131
+ msgstr ""
132
+
133
+
data/docs/i18n/gettext/changelog/0.10.0-changelog.pot ADDED
@@ -0,0 +1,516 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.10.0-changelog.rst:3
10
+ msgid "v0.10.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.10.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.10.0-changelog.rst:5
18
+ msgid "September 01, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.10.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.10.0-changelog.rst:10
26
+ msgid "A total of 40 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.10.0-changelog.rst:14
30
+ msgid "Animfysyk +"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.10.0-changelog.rst:15
34
+ #: ../../source/changelog/0.10.0-changelog.rst:48
35
+ msgid "Benjamin Hackl"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.10.0-changelog.rst:16
39
+ msgid "Christian Clauss"
40
+ msgstr ""
41
+
42
+ #: ../../source/changelog/0.10.0-changelog.rst:17
43
+ msgid "Daniel Adelodun +"
44
+ msgstr ""
45
+
46
+ #: ../../source/changelog/0.10.0-changelog.rst:18
47
+ msgid "Darigov Research"
48
+ msgstr ""
49
+
50
+ #: ../../source/changelog/0.10.0-changelog.rst:19
51
+ #: ../../source/changelog/0.10.0-changelog.rst:49
52
+ msgid "Darylgolden"
53
+ msgstr ""
54
+
55
+ #: ../../source/changelog/0.10.0-changelog.rst:20
56
+ msgid "Eric Biedert +"
57
+ msgstr ""
58
+
59
+ #: ../../source/changelog/0.10.0-changelog.rst:21
60
+ #: ../../source/changelog/0.10.0-changelog.rst:53
61
+ msgid "Harivinay"
62
+ msgstr ""
63
+
64
+ #: ../../source/changelog/0.10.0-changelog.rst:22
65
+ #: ../../source/changelog/0.10.0-changelog.rst:55
66
+ msgid "Jan-Hendrik Müller"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.10.0-changelog.rst:23
70
+ msgid "Jephian Lin +"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.10.0-changelog.rst:24
74
+ msgid "Joy Bhalla +"
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.10.0-changelog.rst:25
78
+ #: ../../source/changelog/0.10.0-changelog.rst:60
79
+ msgid "Laith Bahodi"
80
+ msgstr ""
81
+
82
+ #: ../../source/changelog/0.10.0-changelog.rst:26
83
+ msgid "Lalourche +"
84
+ msgstr ""
85
+
86
+ #: ../../source/changelog/0.10.0-changelog.rst:27
87
+ msgid "Max Stoumen"
88
+ msgstr ""
89
+
90
+ #: ../../source/changelog/0.10.0-changelog.rst:28
91
+ #: ../../source/changelog/0.10.0-changelog.rst:61
92
+ msgid "Naveen M K"
93
+ msgstr ""
94
+
95
+ #: ../../source/changelog/0.10.0-changelog.rst:29
96
+ #: ../../source/changelog/0.10.0-changelog.rst:62
97
+ msgid "Oliver"
98
+ msgstr ""
99
+
100
+ #: ../../source/changelog/0.10.0-changelog.rst:30
101
+ msgid "Partha Das +"
102
+ msgstr ""
103
+
104
+ #: ../../source/changelog/0.10.0-changelog.rst:31
105
+ msgid "Raj Dandekar +"
106
+ msgstr ""
107
+
108
+ #: ../../source/changelog/0.10.0-changelog.rst:32
109
+ msgid "Rohan Sharma +"
110
+ msgstr ""
111
+
112
+ #: ../../source/changelog/0.10.0-changelog.rst:33
113
+ #: ../../source/changelog/0.10.0-changelog.rst:65
114
+ msgid "Ryan McCauley"
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.10.0-changelog.rst:34
118
+ msgid "Václav Hlaváč +"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.10.0-changelog.rst:35
122
+ msgid "asjadaugust +"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.10.0-changelog.rst:36
126
+ #: ../../source/changelog/0.10.0-changelog.rst:66
127
+ msgid "ccn"
128
+ msgstr ""
129
+
130
+ #: ../../source/changelog/0.10.0-changelog.rst:37
131
+ #: ../../source/changelog/0.10.0-changelog.rst:67
132
+ msgid "icedcoffeeee"
133
+ msgstr ""
134
+
135
+ #: ../../source/changelog/0.10.0-changelog.rst:38
136
+ #: ../../source/changelog/0.10.0-changelog.rst:69
137
+ msgid "sparshg"
138
+ msgstr ""
139
+
140
+ #: ../../source/changelog/0.10.0-changelog.rst:39
141
+ msgid "vinnniii15 +"
142
+ msgstr ""
143
+
144
+ #: ../../source/changelog/0.10.0-changelog.rst:40
145
+ msgid "vladislav doster +"
146
+ msgstr ""
147
+
148
+ #: ../../source/changelog/0.10.0-changelog.rst:41
149
+ msgid "xia0long +"
150
+ msgstr ""
151
+
152
+ #: ../../source/changelog/0.10.0-changelog.rst:44
153
+ msgid "The patches included in this release have been reviewed by the following contributors."
154
+ msgstr ""
155
+
156
+ #: ../../source/changelog/0.10.0-changelog.rst:47
157
+ msgid "Aathish Sivasubrahmanian"
158
+ msgstr ""
159
+
160
+ #: ../../source/changelog/0.10.0-changelog.rst:50
161
+ msgid "Devin Neal"
162
+ msgstr ""
163
+
164
+ #: ../../source/changelog/0.10.0-changelog.rst:51
165
+ msgid "Eric Biedert"
166
+ msgstr ""
167
+
168
+ #: ../../source/changelog/0.10.0-changelog.rst:52
169
+ msgid "GameDungeon"
170
+ msgstr ""
171
+
172
+ #: ../../source/changelog/0.10.0-changelog.rst:54
173
+ msgid "Hugues Devimeux"
174
+ msgstr ""
175
+
176
+ #: ../../source/changelog/0.10.0-changelog.rst:56
177
+ msgid "Jason Villanueva"
178
+ msgstr ""
179
+
180
+ #: ../../source/changelog/0.10.0-changelog.rst:57
181
+ msgid "Jephian Lin"
182
+ msgstr ""
183
+
184
+ #: ../../source/changelog/0.10.0-changelog.rst:58
185
+ msgid "Joy Bhalla"
186
+ msgstr ""
187
+
188
+ #: ../../source/changelog/0.10.0-changelog.rst:59
189
+ msgid "KingWampy"
190
+ msgstr ""
191
+
192
+ #: ../../source/changelog/0.10.0-changelog.rst:63
193
+ msgid "Raghav Goel"
194
+ msgstr ""
195
+
196
+ #: ../../source/changelog/0.10.0-changelog.rst:64
197
+ msgid "Raj Dandekar"
198
+ msgstr ""
199
+
200
+ #: ../../source/changelog/0.10.0-changelog.rst:68
201
+ msgid "ralphieraccoon"
202
+ msgstr ""
203
+
204
+ #: ../../source/changelog/0.10.0-changelog.rst:72
205
+ msgid "Pull requests merged"
206
+ msgstr ""
207
+
208
+ #: ../../source/changelog/0.10.0-changelog.rst:74
209
+ msgid "A total of 59 pull requests were merged for this release."
210
+ msgstr ""
211
+
212
+ #: ../../source/changelog/0.10.0-changelog.rst:77
213
+ msgid "Breaking changes"
214
+ msgstr ""
215
+
216
+ #: ../../source/changelog/0.10.0-changelog.rst:81
217
+ msgid ":pr:`1843`: Dropped redundant OpenGL files and add metaclass support for :class:`~.Surface`"
218
+ msgstr ""
219
+
220
+ #: ../../source/changelog/0.10.0-changelog.rst:80
221
+ msgid "``OpenGL<x>`` classes from ``opengl_geometry.py``, ``opengl_text_mobject.py``, ``opengl_tex_mobject.py``, ``opengl_svg_path.py``, ``opengl_svg_mobject.py`` and most of ``opengl_three_dimensions.py`` have been removed."
222
+ msgstr ""
223
+
224
+ #: ../../source/changelog/0.10.0-changelog.rst:81
225
+ msgid "``ParametricSurface`` has been renamed to :class:`~.Surface`"
226
+ msgstr ""
227
+
228
+ #: ../../source/changelog/0.10.0-changelog.rst:84
229
+ msgid "Deprecated classes and functions"
230
+ msgstr ""
231
+
232
+ #: ../../source/changelog/0.10.0-changelog.rst:86
233
+ msgid ":pr:`1941`: Added examples, tests and improved documentation for :mod:`~.coordinate_systems`"
234
+ msgstr ""
235
+
236
+ #: ../../source/changelog/0.10.0-changelog.rst:89
237
+ msgid ":pr:`1694`: Added ``font_size`` parameter for :class:`~.Tex` and :class:`~.Text`, replaced ``scale`` parameters with ``font_size``"
238
+ msgstr ""
239
+
240
+ #: ../../source/changelog/0.10.0-changelog.rst:92
241
+ msgid ":pr:`1860`: Removed :class:`~.GraphScene`, :class:`~.NumberLineOld` and parameters for :class:`~.ChangingDecimal`"
242
+ msgstr ""
243
+
244
+ #: ../../source/changelog/0.10.0-changelog.rst:96
245
+ msgid "New features"
246
+ msgstr ""
247
+
248
+ #: ../../source/changelog/0.10.0-changelog.rst:99
249
+ msgid ":pr:`1929`: Implementing a ``zoom`` parameter for :meth:`.ThreeDScene.move_camera`"
250
+ msgstr ""
251
+
252
+ #: ../../source/changelog/0.10.0-changelog.rst:99
253
+ msgid "Zooming into a :class:`~.ThreeDScene` can now be done by calling, for example, ``self.move_camera(zoom=2)`` in the ``construct`` method."
254
+ msgstr ""
255
+
256
+ #: ../../source/changelog/0.10.0-changelog.rst:101
257
+ msgid ":pr:`1980`: Added a ``dissipating_time`` keyword argument to :class:`~.TracedPath` to allow animating a dissipating path"
258
+ msgstr ""
259
+
260
+ #: ../../source/changelog/0.10.0-changelog.rst:105
261
+ msgid ":pr:`1899`: Allow switching the renderer to OpenGL at runtime"
262
+ msgstr ""
263
+
264
+ #: ../../source/changelog/0.10.0-changelog.rst:105
265
+ msgid "Previously, the metaclass approach only changed the inheritance chain to switch between OpenGL and cairo mobjects when the class objects are initialized, i.e., at import time. This PR also triggers the changes to the inheritance chain when the value of ``config.renderer`` is changed."
266
+ msgstr ""
267
+
268
+ #: ../../source/changelog/0.10.0-changelog.rst:107
269
+ msgid ":pr:`1828`: Added configuration option ``zero_pad`` for zero padding PNG file names"
270
+ msgstr ""
271
+
272
+ #: ../../source/changelog/0.10.0-changelog.rst:111
273
+ msgid "Enhancements"
274
+ msgstr ""
275
+
276
+ #: ../../source/changelog/0.10.0-changelog.rst:113
277
+ msgid ":pr:`1882`: Added OpenGL support for :class:`~.PMobject` and its subclasses"
278
+ msgstr ""
279
+
280
+ #: ../../source/changelog/0.10.0-changelog.rst:116
281
+ msgid ":pr:`1881`: Added methods :meth:`.Angle.get_lines` and :meth:`.Angle.get_value` to :class:`~.Angle`"
282
+ msgstr ""
283
+
284
+ #: ../../source/changelog/0.10.0-changelog.rst:119
285
+ msgid ":pr:`1952`: Added the option to save last frame for OpenGL"
286
+ msgstr ""
287
+
288
+ #: ../../source/changelog/0.10.0-changelog.rst:122
289
+ msgid ":pr:`1922`: Fixed IPython interface to exit cleanly when OpenGL renderer raises an error"
290
+ msgstr ""
291
+
292
+ #: ../../source/changelog/0.10.0-changelog.rst:125
293
+ msgid ":pr:`1923`: Fixed CLI help text for ``manim init`` subcommand so that it is not truncated"
294
+ msgstr ""
295
+
296
+ #: ../../source/changelog/0.10.0-changelog.rst:129
297
+ msgid ":pr:`1868`: Added OpenGL support to IPython magic"
298
+ msgstr ""
299
+
300
+ #: ../../source/changelog/0.10.0-changelog.rst:129
301
+ msgid "The OpenGL renderer can now be used in jupyter notebooks when using the ``%%manim`` magic command."
302
+ msgstr ""
303
+
304
+ #: ../../source/changelog/0.10.0-changelog.rst:131
305
+ msgid ":pr:`1841`: Reduced default resolution of :class:`~.Dot3D`"
306
+ msgstr ""
307
+
308
+ #: ../../source/changelog/0.10.0-changelog.rst:134
309
+ msgid ":pr:`1866`: Allow passing keyword argument ``corner_radius`` to :class:`~.SurroundingRectangle`"
310
+ msgstr ""
311
+
312
+ #: ../../source/changelog/0.10.0-changelog.rst:137
313
+ msgid ":pr:`1847`: Allow :class:`~.Cross` to be created without requiring a mobject"
314
+ msgstr ""
315
+
316
+ #: ../../source/changelog/0.10.0-changelog.rst:141
317
+ msgid "Fixed bugs"
318
+ msgstr ""
319
+
320
+ #: ../../source/changelog/0.10.0-changelog.rst:143
321
+ msgid ":pr:`1985`: Use ``height`` to determine ``font_size`` instead of the ``_font_size`` attribute"
322
+ msgstr ""
323
+
324
+ #: ../../source/changelog/0.10.0-changelog.rst:146
325
+ msgid ":pr:`1758`: Fixed scene selection being ignored when using the OpenGL renderer"
326
+ msgstr ""
327
+
328
+ #: ../../source/changelog/0.10.0-changelog.rst:149
329
+ msgid ":pr:`1871`: Fixed broken :meth:`.VectorScene.vector_to_coords`"
330
+ msgstr ""
331
+
332
+ #: ../../source/changelog/0.10.0-changelog.rst:152
333
+ msgid ":pr:`1973`: Fixed indexing of :meth:`.Table.get_entries` to respect row length"
334
+ msgstr ""
335
+
336
+ #: ../../source/changelog/0.10.0-changelog.rst:155
337
+ msgid ":pr:`1950`: Fixed passing custom arrow shapes to :class:`~.CurvedArrow`"
338
+ msgstr ""
339
+
340
+ #: ../../source/changelog/0.10.0-changelog.rst:158
341
+ msgid ":pr:`1967`: Fixed :attr:`.Axes.coordinate_labels` referring to the entire axis, not just its labels"
342
+ msgstr ""
343
+
344
+ #: ../../source/changelog/0.10.0-changelog.rst:161
345
+ msgid ":pr:`1951`: Fixed :meth:`.Axes.get_line_graph` returning a graph rendered below the axes"
346
+ msgstr ""
347
+
348
+ #: ../../source/changelog/0.10.0-changelog.rst:164
349
+ msgid ":pr:`1943`: Added ``buff`` keyword argument to :class:`~.BraceLabel`"
350
+ msgstr ""
351
+
352
+ #: ../../source/changelog/0.10.0-changelog.rst:167
353
+ msgid ":pr:`1938`: Fixed :class:`~.Rotate` for angles that are multiples of :math:`2\\pi`"
354
+ msgstr ""
355
+
356
+ #: ../../source/changelog/0.10.0-changelog.rst:170
357
+ msgid ":pr:`1924`: Made arrow tips rotate ``IN`` and ``OUT`` properly"
358
+ msgstr ""
359
+
360
+ #: ../../source/changelog/0.10.0-changelog.rst:173
361
+ msgid ":pr:`1931`: Fixed ``row_heights`` in :meth:`.Mobject.arrange_in_grid`"
362
+ msgstr ""
363
+
364
+ #: ../../source/changelog/0.10.0-changelog.rst:176
365
+ msgid ":pr:`1893`: Fixed CLI error when rendering a file containing a single scene without specifying the scene name"
366
+ msgstr ""
367
+
368
+ #: ../../source/changelog/0.10.0-changelog.rst:179
369
+ msgid ":pr:`1744`: Fixed bug in :class:`~.NumberPlane` with strictly positive or strictly negative values for ``x_range`` and ``y_range``"
370
+ msgstr ""
371
+
372
+ #: ../../source/changelog/0.10.0-changelog.rst:182
373
+ msgid ":pr:`1887`: Fixed ``custom_config`` not working in ``frames_comparison``"
374
+ msgstr ""
375
+
376
+ #: ../../source/changelog/0.10.0-changelog.rst:185
377
+ msgid ":pr:`1879`: Fixed how the installed version is determined by Poetry"
378
+ msgstr ""
379
+
380
+ #: ../../source/changelog/0.10.0-changelog.rst:189
381
+ msgid "Documentation-related changes"
382
+ msgstr ""
383
+
384
+ #: ../../source/changelog/0.10.0-changelog.rst:191
385
+ msgid ":pr:`1979`: Corrected Japanese phrases in documentation"
386
+ msgstr ""
387
+
388
+ #: ../../source/changelog/0.10.0-changelog.rst:194
389
+ msgid ":pr:`1976`: Fixed labelling of languages in documentation example"
390
+ msgstr ""
391
+
392
+ #: ../../source/changelog/0.10.0-changelog.rst:197
393
+ msgid ":pr:`1949`: Rewrite installation instructions from scratch"
394
+ msgstr ""
395
+
396
+ #: ../../source/changelog/0.10.0-changelog.rst:200
397
+ msgid ":pr:`1963`: Added sitemap to ``robots.txt``"
398
+ msgstr ""
399
+
400
+ #: ../../source/changelog/0.10.0-changelog.rst:203
401
+ msgid ":pr:`1939`: Fixed formatting of parameter description of :class:`~.NumberPlane`"
402
+ msgstr ""
403
+
404
+ #: ../../source/changelog/0.10.0-changelog.rst:206
405
+ msgid ":pr:`1918`: Fixed a typo in the text tutorial"
406
+ msgstr ""
407
+
408
+ #: ../../source/changelog/0.10.0-changelog.rst:209
409
+ msgid ":pr:`1915`: Improved the wording of the installation instructions for Google Colab"
410
+ msgstr ""
411
+
412
+ #: ../../source/changelog/0.10.0-changelog.rst:212
413
+ msgid ":pr:`1906`: Improved language and overall consistency in ``README``"
414
+ msgstr ""
415
+
416
+ #: ../../source/changelog/0.10.0-changelog.rst:215
417
+ msgid ":pr:`1880`: Updated tutorials to use ``.animate`` instead of :class:`~.ApplyMethod`"
418
+ msgstr ""
419
+
420
+ #: ../../source/changelog/0.10.0-changelog.rst:218
421
+ msgid ":pr:`1877`: Remove duplicated imports in some documentation examples"
422
+ msgstr ""
423
+
424
+ #: ../../source/changelog/0.10.0-changelog.rst:221
425
+ msgid ":pr:`1869`: Fixed duplicated Parameters section in :meth:`.Mobject.arrange_in_grid`"
426
+ msgstr ""
427
+
428
+ #: ../../source/changelog/0.10.0-changelog.rst:225
429
+ msgid "Changes concerning the testing system"
430
+ msgstr ""
431
+
432
+ #: ../../source/changelog/0.10.0-changelog.rst:227
433
+ msgid ":pr:`1894`: Fixed an OpenGL test"
434
+ msgstr ""
435
+
436
+ #: ../../source/changelog/0.10.0-changelog.rst:231
437
+ msgid "Changes to our development infrastructure"
438
+ msgstr ""
439
+
440
+ #: ../../source/changelog/0.10.0-changelog.rst:233
441
+ msgid ":pr:`1987`: Added support for using OpenGL in subprocess in Windows pipeline"
442
+ msgstr ""
443
+
444
+ #: ../../source/changelog/0.10.0-changelog.rst:236
445
+ msgid ":pr:`1964`: Added ``CITATION.cff`` and a method to automatically update this citation with new releases"
446
+ msgstr ""
447
+
448
+ #: ../../source/changelog/0.10.0-changelog.rst:239
449
+ msgid ":pr:`1856`: Modified Dockerfile to support multi-platform builds via ``docker buildx``"
450
+ msgstr ""
451
+
452
+ #: ../../source/changelog/0.10.0-changelog.rst:242
453
+ msgid ":pr:`1955`: Partially support OpenGL rendering with Docker"
454
+ msgstr ""
455
+
456
+ #: ../../source/changelog/0.10.0-changelog.rst:245
457
+ msgid ":pr:`1896`: Made RTD apt install FFMPEG instead of installing a Python binding"
458
+ msgstr ""
459
+
460
+ #: ../../source/changelog/0.10.0-changelog.rst:248
461
+ msgid ":pr:`1864`: Shortened and simplified PR template"
462
+ msgstr ""
463
+
464
+ #: ../../source/changelog/0.10.0-changelog.rst:251
465
+ msgid ":pr:`1853`: Updated Sphinx to 4.1.2"
466
+ msgstr ""
467
+
468
+ #: ../../source/changelog/0.10.0-changelog.rst:255
469
+ msgid "Code quality improvements and similar refactors"
470
+ msgstr ""
471
+
472
+ #: ../../source/changelog/0.10.0-changelog.rst:257
473
+ msgid ":pr:`1960`: Ignore fewer flake8 errors"
474
+ msgstr ""
475
+
476
+ #: ../../source/changelog/0.10.0-changelog.rst:260
477
+ msgid ":pr:`1947`: Set flake8 not to ignore undefined names in Python code"
478
+ msgstr ""
479
+
480
+ #: ../../source/changelog/0.10.0-changelog.rst:263
481
+ msgid ":pr:`1948`: flake8: Set max-line-length instead of ignoring long lines"
482
+ msgstr ""
483
+
484
+ #: ../../source/changelog/0.10.0-changelog.rst:268
485
+ msgid ":pr:`1956`: Upgrade to modern Python syntax"
486
+ msgstr ""
487
+
488
+ #: ../../source/changelog/0.10.0-changelog.rst:267
489
+ msgid "This pull request was created `with the command <https://github.com/asottile/pyupgrade#readme>`__ ``pyupgrade --py36-plus **/*.py``"
490
+ msgstr ""
491
+
492
+ #: ../../source/changelog/0.10.0-changelog.rst:268
493
+ msgid "Python f-strings simplify the code and `should speed up execution <https://www.scivision.dev/python-f-string-speed>`__."
494
+ msgstr ""
495
+
496
+ #: ../../source/changelog/0.10.0-changelog.rst:271
497
+ msgid ":pr:`1898`: Replaced ``self.data[\"attr\"]`` and ``self.uniforms[\"attr\"]`` with ``self.attr``"
498
+ msgstr ""
499
+
500
+ #: ../../source/changelog/0.10.0-changelog.rst:271
501
+ msgid "In particular, ``OpenGLVMobject.points`` can now be accessed directly."
502
+ msgstr ""
503
+
504
+ #: ../../source/changelog/0.10.0-changelog.rst:273
505
+ msgid ":pr:`1934`: Improved code quality by implementing suggestions from LGTM"
506
+ msgstr ""
507
+
508
+ #: ../../source/changelog/0.10.0-changelog.rst:276
509
+ msgid ":pr:`1861`: Updated ``dearpygui`` version to 0.8.x"
510
+ msgstr ""
511
+
512
+ #: ../../source/changelog/0.10.0-changelog.rst:280
513
+ msgid "New releases"
514
+ msgstr ""
515
+
516
+
data/docs/i18n/gettext/changelog/0.11.0-changelog.pot ADDED
@@ -0,0 +1,452 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.11.0-changelog.rst:3
10
+ msgid "v0.11.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.11.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.11.0-changelog.rst:5
18
+ msgid "October 02, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.11.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.11.0-changelog.rst:10
26
+ msgid "A total of 31 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.11.0-changelog.rst:14
30
+ #: ../../source/changelog/0.11.0-changelog.rst:40
31
+ msgid "Aathish Sivasubrahmanian"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.11.0-changelog.rst:15
35
+ #: ../../source/changelog/0.11.0-changelog.rst:41
36
+ msgid "Benjamin Hackl"
37
+ msgstr ""
38
+
39
+ #: ../../source/changelog/0.11.0-changelog.rst:16
40
+ msgid "Charlie +"
41
+ msgstr ""
42
+
43
+ #: ../../source/changelog/0.11.0-changelog.rst:17
44
+ msgid "Christopher Besch +"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.11.0-changelog.rst:18
48
+ #: ../../source/changelog/0.11.0-changelog.rst:43
49
+ msgid "Darylgolden"
50
+ msgstr ""
51
+
52
+ #: ../../source/changelog/0.11.0-changelog.rst:19
53
+ msgid "Evan Boehs +"
54
+ msgstr ""
55
+
56
+ #: ../../source/changelog/0.11.0-changelog.rst:20
57
+ #: ../../source/changelog/0.11.0-changelog.rst:45
58
+ msgid "GameDungeon"
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.11.0-changelog.rst:21
62
+ #: ../../source/changelog/0.11.0-changelog.rst:46
63
+ msgid "Hugues Devimeux"
64
+ msgstr ""
65
+
66
+ #: ../../source/changelog/0.11.0-changelog.rst:22
67
+ msgid "Jerónimo Squartini"
68
+ msgstr ""
69
+
70
+ #: ../../source/changelog/0.11.0-changelog.rst:23
71
+ #: ../../source/changelog/0.11.0-changelog.rst:49
72
+ msgid "Laith Bahodi"
73
+ msgstr ""
74
+
75
+ #: ../../source/changelog/0.11.0-changelog.rst:24
76
+ msgid "Meredith Espinosa +"
77
+ msgstr ""
78
+
79
+ #: ../../source/changelog/0.11.0-changelog.rst:25
80
+ #: ../../source/changelog/0.11.0-changelog.rst:51
81
+ msgid "Mysaa"
82
+ msgstr ""
83
+
84
+ #: ../../source/changelog/0.11.0-changelog.rst:26
85
+ #: ../../source/changelog/0.11.0-changelog.rst:52
86
+ msgid "Naveen M K"
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.11.0-changelog.rst:27
90
+ msgid "Nicolai Weitkemper +"
91
+ msgstr ""
92
+
93
+ #: ../../source/changelog/0.11.0-changelog.rst:28
94
+ #: ../../source/changelog/0.11.0-changelog.rst:54
95
+ msgid "Oliver"
96
+ msgstr ""
97
+
98
+ #: ../../source/changelog/0.11.0-changelog.rst:29
99
+ #: ../../source/changelog/0.11.0-changelog.rst:56
100
+ msgid "Ryan McCauley"
101
+ msgstr ""
102
+
103
+ #: ../../source/changelog/0.11.0-changelog.rst:30
104
+ msgid "Tim +"
105
+ msgstr ""
106
+
107
+ #: ../../source/changelog/0.11.0-changelog.rst:31
108
+ #: ../../source/changelog/0.11.0-changelog.rst:59
109
+ msgid "icedcoffeeee"
110
+ msgstr ""
111
+
112
+ #: ../../source/changelog/0.11.0-changelog.rst:32
113
+ msgid "imadjamil +"
114
+ msgstr ""
115
+
116
+ #: ../../source/changelog/0.11.0-changelog.rst:33
117
+ msgid "leleogere +"
118
+ msgstr ""
119
+
120
+ #: ../../source/changelog/0.11.0-changelog.rst:34
121
+ msgid "Максим Заякин +"
122
+ msgstr ""
123
+
124
+ #: ../../source/changelog/0.11.0-changelog.rst:37
125
+ msgid "The patches included in this release have been reviewed by the following contributors."
126
+ msgstr ""
127
+
128
+ #: ../../source/changelog/0.11.0-changelog.rst:42
129
+ msgid "Charlie"
130
+ msgstr ""
131
+
132
+ #: ../../source/changelog/0.11.0-changelog.rst:44
133
+ msgid "Evan Boehs"
134
+ msgstr ""
135
+
136
+ #: ../../source/changelog/0.11.0-changelog.rst:47
137
+ msgid "Jan-Hendrik Müller"
138
+ msgstr ""
139
+
140
+ #: ../../source/changelog/0.11.0-changelog.rst:48
141
+ msgid "Jason Villanueva"
142
+ msgstr ""
143
+
144
+ #: ../../source/changelog/0.11.0-changelog.rst:50
145
+ msgid "Mark Miller"
146
+ msgstr ""
147
+
148
+ #: ../../source/changelog/0.11.0-changelog.rst:53
149
+ msgid "Nicolai Weitkemper"
150
+ msgstr ""
151
+
152
+ #: ../../source/changelog/0.11.0-changelog.rst:55
153
+ msgid "Raghav Goel"
154
+ msgstr ""
155
+
156
+ #: ../../source/changelog/0.11.0-changelog.rst:57
157
+ msgid "Skaft"
158
+ msgstr ""
159
+
160
+ #: ../../source/changelog/0.11.0-changelog.rst:58
161
+ msgid "friedkeenan"
162
+ msgstr ""
163
+
164
+ #: ../../source/changelog/0.11.0-changelog.rst:60
165
+ msgid "leleogere"
166
+ msgstr ""
167
+
168
+ #: ../../source/changelog/0.11.0-changelog.rst:63
169
+ msgid "Pull requests merged"
170
+ msgstr ""
171
+
172
+ #: ../../source/changelog/0.11.0-changelog.rst:65
173
+ msgid "A total of 55 pull requests were merged for this release."
174
+ msgstr ""
175
+
176
+ #: ../../source/changelog/0.11.0-changelog.rst:68
177
+ msgid "Breaking changes"
178
+ msgstr ""
179
+
180
+ #: ../../source/changelog/0.11.0-changelog.rst:71
181
+ msgid ":pr:`1990`: Changed and improved the implementation of :meth:`.CoordinateSystem.get_area` to work without Riemann rectangles"
182
+ msgstr ""
183
+
184
+ #: ../../source/changelog/0.11.0-changelog.rst:71
185
+ msgid "This changes how :meth:`.CoordinateSystem.get_area` is implemented. To mimic the old behavior (tiny Riemann rectangles), use :meth:`.CoordinateSystem.get_riemann_rectangles` with a small value for ``dx``."
186
+ msgstr ""
187
+
188
+ #: ../../source/changelog/0.11.0-changelog.rst:74
189
+ msgid ":pr:`2095`: Changed angles for polar coordinates to use math convention"
190
+ msgstr ""
191
+
192
+ #: ../../source/changelog/0.11.0-changelog.rst:74
193
+ msgid "This PR switches the parameter names ``phi`` and ``theta`` in :func:`cartesian_to_spherical` and :func:`spherical_to_cartesian` to align with the `usual definition in mathematics <https://user-images.githubusercontent.com/83535735/131709630-87290522-7747-4b21-9411-dd3d35ebaf0f.png>`__."
194
+ msgstr ""
195
+
196
+ #: ../../source/changelog/0.11.0-changelog.rst:77
197
+ msgid "Highlights"
198
+ msgstr ""
199
+
200
+ #: ../../source/changelog/0.11.0-changelog.rst:80
201
+ msgid ":pr:`2094`: Implemented :class:`~.ImplicitFunction` and :meth:`.CoordinateSystem.get_implicit_curve` for plotting implicit curves"
202
+ msgstr ""
203
+
204
+ #: ../../source/changelog/0.11.0-changelog.rst:80
205
+ msgid "An :class:`~.ImplicitFunction` that plots the points :math:`(x, y)` which satisfy some equation :math:`f(x,y) = 0`."
206
+ msgstr ""
207
+
208
+ #: ../../source/changelog/0.11.0-changelog.rst:82
209
+ msgid ":pr:`2075`: Implemented :meth:`.Mobject.set_default`, a mechanism for changing default values of keyword arguments"
210
+ msgstr ""
211
+
212
+ #: ../../source/changelog/0.11.0-changelog.rst:87
213
+ msgid ":pr:`1998`: Added support for Boolean Operations on VMobjects"
214
+ msgstr ""
215
+
216
+ #: ../../source/changelog/0.11.0-changelog.rst:86
217
+ msgid "This PR introduces boolean operations for :class:`~.VMobject`; see details and examples at :class:`~.Union`, :class:`~.Difference`, :class:`~.Intersection` and :class:`~.Exclusion`."
218
+ msgstr ""
219
+
220
+ #: ../../source/changelog/0.11.0-changelog.rst:90
221
+ msgid "Deprecated classes and functions"
222
+ msgstr ""
223
+
224
+ #: ../../source/changelog/0.11.0-changelog.rst:92
225
+ msgid ":pr:`2123`: Renamed ``distance`` parameter of :class:`.ThreeDScene` and :class:`.ThreeDCamera` to ``focal_distance``"
226
+ msgstr ""
227
+
228
+ #: ../../source/changelog/0.11.0-changelog.rst:95
229
+ msgid ":pr:`2102`: Deprecated :class:`~.SampleSpaceScene` and :class:`~.ReconfigurableScene`"
230
+ msgstr ""
231
+
232
+ #: ../../source/changelog/0.11.0-changelog.rst:98
233
+ msgid ":pr:`2061`: Removed deprecated ``u_min``, ``u_max``, ``v_min``, ``v_max`` in :class:`~.Surface`"
234
+ msgstr ""
235
+
236
+ #: ../../source/changelog/0.11.0-changelog.rst:101
237
+ msgid ":pr:`2024`: Deprecated redundant methods :meth:`.Mobject.rotate_in_place`, :meth:`.Mobject.scale_in_place`, :meth:`.Mobject.scale_about_point`"
238
+ msgstr ""
239
+
240
+ #: ../../source/changelog/0.11.0-changelog.rst:104
241
+ msgid ":pr:`1991`: Deprecated :meth:`.VMobject.get_points`"
242
+ msgstr ""
243
+
244
+ #: ../../source/changelog/0.11.0-changelog.rst:108
245
+ msgid "New features"
246
+ msgstr ""
247
+
248
+ #: ../../source/changelog/0.11.0-changelog.rst:110
249
+ msgid ":pr:`2118`: Added 3D support for :class:`~.ArrowVectorField` and :class:`~.StreamLines`"
250
+ msgstr ""
251
+
252
+ #: ../../source/changelog/0.11.0-changelog.rst:113
253
+ msgid ":pr:`1469`: Added :meth:`.VMobject.proportion_from_point` to measure the proportion of points along a Bezier curve"
254
+ msgstr ""
255
+
256
+ #: ../../source/changelog/0.11.0-changelog.rst:117
257
+ msgid "Enhancements"
258
+ msgstr ""
259
+
260
+ #: ../../source/changelog/0.11.0-changelog.rst:119
261
+ msgid ":pr:`2111`: Improved setting of OpenGL colors"
262
+ msgstr ""
263
+
264
+ #: ../../source/changelog/0.11.0-changelog.rst:122
265
+ msgid ":pr:`2113`: Added OpenGL compatibility to :meth:`.ThreeDScene.begin_ambient_camera_rotation` and :meth:`.ThreeDScene.move_camera`"
266
+ msgstr ""
267
+
268
+ #: ../../source/changelog/0.11.0-changelog.rst:125
269
+ msgid ":pr:`2016`: Added OpenGL support for :mod:`~.mobject.boolean_ops`"
270
+ msgstr ""
271
+
272
+ #: ../../source/changelog/0.11.0-changelog.rst:128
273
+ msgid ":pr:`2084`: Added :meth:`~Table.get_highlighted_cell` and fixed :meth:`~Table.add_highlighted_cell`"
274
+ msgstr ""
275
+
276
+ #: ../../source/changelog/0.11.0-changelog.rst:131
277
+ msgid ":pr:`2013`: Removed unnecessary check in :class:`~.TransformMatchingAbstractBase`"
278
+ msgstr ""
279
+
280
+ #: ../../source/changelog/0.11.0-changelog.rst:134
281
+ msgid ":pr:`1971`: Added OpenGL support for :class:`~.StreamLines`"
282
+ msgstr ""
283
+
284
+ #: ../../source/changelog/0.11.0-changelog.rst:137
285
+ msgid ":pr:`2041`: Added config option to enable OpenGL wireframe for debugging"
286
+ msgstr ""
287
+
288
+ #: ../../source/changelog/0.11.0-changelog.rst:141
289
+ msgid "Fixed bugs"
290
+ msgstr ""
291
+
292
+ #: ../../source/changelog/0.11.0-changelog.rst:143
293
+ msgid ":pr:`2070`: Fixed :meth:`~OpenGLRenderer.get_frame` when window is created"
294
+ msgstr ""
295
+
296
+ #: ../../source/changelog/0.11.0-changelog.rst:146
297
+ msgid ":pr:`2071`: Fixed :class:`~AnimationGroup` OpenGL compatibility"
298
+ msgstr ""
299
+
300
+ #: ../../source/changelog/0.11.0-changelog.rst:149
301
+ msgid ":pr:`2108`: Fixed swapped axis step values in :class:`~.NumberPlane`"
302
+ msgstr ""
303
+
304
+ #: ../../source/changelog/0.11.0-changelog.rst:152
305
+ msgid ":pr:`2072`: Added OpenGL compatibility for :class:`~.Cube`."
306
+ msgstr ""
307
+
308
+ #: ../../source/changelog/0.11.0-changelog.rst:155
309
+ msgid ":pr:`2060`: Fixed OpenGL compatibility issue for meth:`~Line.set_opacity`"
310
+ msgstr ""
311
+
312
+ #: ../../source/changelog/0.11.0-changelog.rst:158
313
+ msgid ":pr:`2037`: Fixed return value of :meth:`~.OpenGLMobject.apply_complex_function`"
314
+ msgstr ""
315
+
316
+ #: ../../source/changelog/0.11.0-changelog.rst:161
317
+ msgid ":pr:`2039`: Added OpenGL compatibility for :meth:`~Cylinder.add_bases`."
318
+ msgstr ""
319
+
320
+ #: ../../source/changelog/0.11.0-changelog.rst:164
321
+ msgid ":pr:`2066`: Fixed error raised by logging when cache is full"
322
+ msgstr ""
323
+
324
+ #: ../../source/changelog/0.11.0-changelog.rst:167
325
+ msgid ":pr:`2026`: Fixed OpenGL shift animation for :class:`~.Text`"
326
+ msgstr ""
327
+
328
+ #: ../../source/changelog/0.11.0-changelog.rst:170
329
+ msgid ":pr:`2028`: Fixed OpenGL overriding SVG fill color"
330
+ msgstr ""
331
+
332
+ #: ../../source/changelog/0.11.0-changelog.rst:173
333
+ msgid ":pr:`2043`: Fixed bug where :meth:`.NumberLine.add_labels` cannot accept non-mobject labels"
334
+ msgstr ""
335
+
336
+ #: ../../source/changelog/0.11.0-changelog.rst:176
337
+ msgid ":pr:`2011`: Fixed ``-a`` flag for OpenGL rendering"
338
+ msgstr ""
339
+
340
+ #: ../../source/changelog/0.11.0-changelog.rst:179
341
+ msgid ":pr:`1994`: Fix :meth:`~.input_to_graph_point` when passing a line graph (from :meth:`.Axes.get_line_graph`)"
342
+ msgstr ""
343
+
344
+ #: ../../source/changelog/0.11.0-changelog.rst:182
345
+ msgid ":pr:`2017`: Avoided using deprecated ``get_points`` method and fixed :class:`~.OpenGLPMPoint` color"
346
+ msgstr ""
347
+
348
+ #: ../../source/changelog/0.11.0-changelog.rst:186
349
+ msgid "Documentation-related changes"
350
+ msgstr ""
351
+
352
+ #: ../../source/changelog/0.11.0-changelog.rst:188
353
+ msgid ":pr:`2131`: Copyedited the configuration tutorial in the documentation"
354
+ msgstr ""
355
+
356
+ #: ../../source/changelog/0.11.0-changelog.rst:191
357
+ msgid ":pr:`2120`: Changed ``manim_directive`` to use a clean configuration via ``tempconfig``"
358
+ msgstr ""
359
+
360
+ #: ../../source/changelog/0.11.0-changelog.rst:194
361
+ msgid ":pr:`2122`: Fixed broken links in inheritance graphs by moving them to ``reference.rst``"
362
+ msgstr ""
363
+
364
+ #: ../../source/changelog/0.11.0-changelog.rst:197
365
+ msgid ":pr:`2115`: Improved docstring of :meth:`.PMobject.add_points`"
366
+ msgstr ""
367
+
368
+ #: ../../source/changelog/0.11.0-changelog.rst:200
369
+ msgid ":pr:`2116`: Made type hint for ``line_spacing`` argument of :class:`~.Paragraph` more accurate"
370
+ msgstr ""
371
+
372
+ #: ../../source/changelog/0.11.0-changelog.rst:203
373
+ msgid ":pr:`2117`: Changed the way the background color was set in a documentation example to avoid leaking the setting to other examples"
374
+ msgstr ""
375
+
376
+ #: ../../source/changelog/0.11.0-changelog.rst:206
377
+ msgid ":pr:`2101`: Added note that translation process is not ready"
378
+ msgstr ""
379
+
380
+ #: ../../source/changelog/0.11.0-changelog.rst:209
381
+ msgid ":pr:`2055`: Fixed parameter types of :meth:`.Graph.add_edges` and :meth:`.Graph.add_vertices`"
382
+ msgstr ""
383
+
384
+ #: ../../source/changelog/0.11.0-changelog.rst:212
385
+ msgid ":pr:`862`: Prepared documentation for translation (still work in progress)"
386
+ msgstr ""
387
+
388
+ #: ../../source/changelog/0.11.0-changelog.rst:215
389
+ msgid ":pr:`2035`: Fixed broken link in README"
390
+ msgstr ""
391
+
392
+ #: ../../source/changelog/0.11.0-changelog.rst:218
393
+ msgid ":pr:`2020`: Corrected paths to user-wide configuration files for MacOS and Linux"
394
+ msgstr ""
395
+
396
+ #: ../../source/changelog/0.11.0-changelog.rst:222
397
+ msgid "Changes concerning the testing system"
398
+ msgstr ""
399
+
400
+ #: ../../source/changelog/0.11.0-changelog.rst:224
401
+ msgid ":pr:`2008`: Reuse CLI flag tests for OpenGL"
402
+ msgstr ""
403
+
404
+ #: ../../source/changelog/0.11.0-changelog.rst:227
405
+ msgid ":pr:`2080`: Reused :class:`~.Mobject` tests for :class:`~.OpenGLMobject`"
406
+ msgstr ""
407
+
408
+ #: ../../source/changelog/0.11.0-changelog.rst:231
409
+ msgid "Changes to our development infrastructure"
410
+ msgstr ""
411
+
412
+ #: ../../source/changelog/0.11.0-changelog.rst:233
413
+ msgid ":pr:`2004`: Cancel previous workflows in the same branch in Github Actions"
414
+ msgstr ""
415
+
416
+ #: ../../source/changelog/0.11.0-changelog.rst:237
417
+ msgid "Code quality improvements and similar refactors"
418
+ msgstr ""
419
+
420
+ #: ../../source/changelog/0.11.0-changelog.rst:239
421
+ msgid ":pr:`2050`: Make colour aliases IDE-friendly"
422
+ msgstr ""
423
+
424
+ #: ../../source/changelog/0.11.0-changelog.rst:242
425
+ msgid ":pr:`2126`: Fixed whitespace in info message issued by :meth:`.SceneFileWriter.clean_cache`"
426
+ msgstr ""
427
+
428
+ #: ../../source/changelog/0.11.0-changelog.rst:245
429
+ msgid ":pr:`2124`: Upgraded several dependencies (in particular: ``skia-pathops``)"
430
+ msgstr ""
431
+
432
+ #: ../../source/changelog/0.11.0-changelog.rst:248
433
+ msgid ":pr:`2001`: Fixed several warnings issued by LGTM"
434
+ msgstr ""
435
+
436
+ #: ../../source/changelog/0.11.0-changelog.rst:251
437
+ msgid ":pr:`2064`: Removed duplicate insert shader directory"
438
+ msgstr ""
439
+
440
+ #: ../../source/changelog/0.11.0-changelog.rst:254
441
+ msgid ":pr:`2027`: Improved wording in info message issued by :meth:`.SceneFileWriter.clean_cache`"
442
+ msgstr ""
443
+
444
+ #: ../../source/changelog/0.11.0-changelog.rst:257
445
+ msgid ":pr:`1968`: Sharpened Flake8 configuration and fixed resulting warnings"
446
+ msgstr ""
447
+
448
+ #: ../../source/changelog/0.11.0-changelog.rst:261
449
+ msgid "New releases"
450
+ msgstr ""
451
+
452
+
data/docs/i18n/gettext/changelog/0.12.0-changelog.pot ADDED
@@ -0,0 +1,485 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.12.0-changelog.rst:3
10
+ msgid "v0.12.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.12.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.12.0-changelog.rst:5
18
+ msgid "November 02, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.12.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.12.0-changelog.rst:10
26
+ msgid "A total of 40 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.12.0-changelog.rst:14
30
+ msgid "Anima. +"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.12.0-changelog.rst:15
34
+ msgid "Arcstur +"
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.12.0-changelog.rst:16
38
+ #: ../../source/changelog/0.12.0-changelog.rst:47
39
+ msgid "Benjamin Hackl"
40
+ msgstr ""
41
+
42
+ #: ../../source/changelog/0.12.0-changelog.rst:17
43
+ #: ../../source/changelog/0.12.0-changelog.rst:48
44
+ msgid "Christopher Besch"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.12.0-changelog.rst:18
48
+ #: ../../source/changelog/0.12.0-changelog.rst:49
49
+ msgid "Darylgolden"
50
+ msgstr ""
51
+
52
+ #: ../../source/changelog/0.12.0-changelog.rst:19
53
+ msgid "David Yang +"
54
+ msgstr ""
55
+
56
+ #: ../../source/changelog/0.12.0-changelog.rst:20
57
+ msgid "Dhananjay Goratela +"
58
+ msgstr ""
59
+
60
+ #: ../../source/changelog/0.12.0-changelog.rst:21
61
+ msgid "Ethan Rooke +"
62
+ msgstr ""
63
+
64
+ #: ../../source/changelog/0.12.0-changelog.rst:22
65
+ msgid "Eugene Chung +"
66
+ msgstr ""
67
+
68
+ #: ../../source/changelog/0.12.0-changelog.rst:23
69
+ msgid "GameDungeon"
70
+ msgstr ""
71
+
72
+ #: ../../source/changelog/0.12.0-changelog.rst:24
73
+ msgid "Gustav-Rixon +"
74
+ msgstr ""
75
+
76
+ #: ../../source/changelog/0.12.0-changelog.rst:25
77
+ #: ../../source/changelog/0.12.0-changelog.rst:56
78
+ msgid "Jan-Hendrik Müller"
79
+ msgstr ""
80
+
81
+ #: ../../source/changelog/0.12.0-changelog.rst:26
82
+ msgid "Josiah Winslow +"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.12.0-changelog.rst:27
86
+ #: ../../source/changelog/0.12.0-changelog.rst:58
87
+ msgid "Laith Bahodi"
88
+ msgstr ""
89
+
90
+ #: ../../source/changelog/0.12.0-changelog.rst:28
91
+ msgid "Martmists +"
92
+ msgstr ""
93
+
94
+ #: ../../source/changelog/0.12.0-changelog.rst:29
95
+ msgid "Michael Hill +"
96
+ msgstr ""
97
+
98
+ #: ../../source/changelog/0.12.0-changelog.rst:30
99
+ #: ../../source/changelog/0.12.0-changelog.rst:60
100
+ msgid "Naveen M K"
101
+ msgstr ""
102
+
103
+ #: ../../source/changelog/0.12.0-changelog.rst:31
104
+ msgid "Nick +"
105
+ msgstr ""
106
+
107
+ #: ../../source/changelog/0.12.0-changelog.rst:32
108
+ msgid "NotWearingPants +"
109
+ msgstr ""
110
+
111
+ #: ../../source/changelog/0.12.0-changelog.rst:33
112
+ msgid "Peeter Joot +"
113
+ msgstr ""
114
+
115
+ #: ../../source/changelog/0.12.0-changelog.rst:34
116
+ #: ../../source/changelog/0.12.0-changelog.rst:63
117
+ msgid "Ryan McCauley"
118
+ msgstr ""
119
+
120
+ #: ../../source/changelog/0.12.0-changelog.rst:35
121
+ msgid "Viicos +"
122
+ msgstr ""
123
+
124
+ #: ../../source/changelog/0.12.0-changelog.rst:36
125
+ msgid "heitor +"
126
+ msgstr ""
127
+
128
+ #: ../../source/changelog/0.12.0-changelog.rst:37
129
+ #: ../../source/changelog/0.12.0-changelog.rst:65
130
+ msgid "icedcoffeeee"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.12.0-changelog.rst:38
134
+ msgid "kieran-pringle +"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.12.0-changelog.rst:39
138
+ msgid "Виктор Виктор +"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.12.0-changelog.rst:42
142
+ msgid "The patches included in this release have been reviewed by the following contributors."
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.12.0-changelog.rst:45
146
+ msgid "Alex Lembcke"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.12.0-changelog.rst:46
150
+ msgid "Anima."
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.12.0-changelog.rst:50
154
+ msgid "David Yang"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.12.0-changelog.rst:51
158
+ msgid "Dhananjay Goratela"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.12.0-changelog.rst:52
162
+ msgid "Ethan Rooke"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.12.0-changelog.rst:53
166
+ msgid "Eugene Chung"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.12.0-changelog.rst:54
170
+ msgid "Gustav-Rixon"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.12.0-changelog.rst:55
174
+ msgid "Hugues Devimeux"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.12.0-changelog.rst:57
178
+ msgid "Jason Villanueva"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.12.0-changelog.rst:59
182
+ msgid "Mysaa"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.12.0-changelog.rst:61
186
+ msgid "Nick"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.12.0-changelog.rst:62
190
+ msgid "Oliver"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.12.0-changelog.rst:64
194
+ msgid "Viicos"
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.12.0-changelog.rst:66
198
+ msgid "kieran-pringle"
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.12.0-changelog.rst:69
202
+ msgid "Pull requests merged"
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.12.0-changelog.rst:71
206
+ msgid "A total of 52 pull requests were merged for this release."
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.12.0-changelog.rst:74
210
+ msgid "Highlights"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.12.0-changelog.rst:79
214
+ msgid ":pr:`1812`: Implemented logarithmic scaling for :class:`~.NumberLine` / :class:`~.Axes`"
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.12.0-changelog.rst:77
218
+ msgid "This implements scaling bases that can be passed to the ``scaling`` keyword argument of :class:`.NumberLine`. See :class:`.LogBase` (for a logarithmic scale) and :class:`.LinearBase` (for the default scale) for more details and examples."
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.12.0-changelog.rst:85
222
+ msgid ":pr:`2152`: Introduced API for scene sections via :meth:`.Scene.next_section`"
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.12.0-changelog.rst:82
226
+ msgid "Sections divide a scene into multiple parts, resulting in multiple output videos (when using the ``--save_sections`` flag). The cuts between two sections are defined by the user in the :meth:`~.Scene.construct` method. Each section has an optional name and type, which can be used by a plugin (`see an example <https://github.com/ManimEditorProject/manim_editor>`__). You can skip rendering specific sections with the ``skip_animations`` keyword argument."
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.12.0-changelog.rst:88
230
+ msgid "Deprecated classes and functions"
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.12.0-changelog.rst:90
234
+ msgid ":pr:`1926`: OpenGL: changed ``submobjects`` to be a property"
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.12.0-changelog.rst:93
238
+ msgid ":pr:`2245`: Removed deprecated method ``get_center_point`` and parameters ``azimuth_label_scale``, ``number_scale_value``, ``label_scale``, ``scale_factor``, ``size``, ``x_min``, ``x_max``, ``delta_x``, ``y_min``, ``y_max``, ``delta_y``"
239
+ msgstr ""
240
+
241
+ #: ../../source/changelog/0.12.0-changelog.rst:96
242
+ msgid ":pr:`2187`: Renamed ``get_graph`` and its variants to :meth:`~.CoordinateSystem.plot`"
243
+ msgstr ""
244
+
245
+ #: ../../source/changelog/0.12.0-changelog.rst:99
246
+ msgid ":pr:`2065`: Deprecated :class:`~.FullScreenFadeRectangle` and :class:`~.PictureInPictureFrame`"
247
+ msgstr ""
248
+
249
+ #: ../../source/changelog/0.12.0-changelog.rst:103
250
+ msgid "New features"
251
+ msgstr ""
252
+
253
+ #: ../../source/changelog/0.12.0-changelog.rst:105
254
+ msgid ":pr:`2025`: Implemented :meth:`.CoordinateSystem.input_to_graph_coords` and fixed :meth:`.CoordinateSystem.angle_of_tangent`"
255
+ msgstr ""
256
+
257
+ #: ../../source/changelog/0.12.0-changelog.rst:108
258
+ msgid ":pr:`2151`: Added option to set the input file from a config file"
259
+ msgstr ""
260
+
261
+ #: ../../source/changelog/0.12.0-changelog.rst:111
262
+ msgid ":pr:`2128`: Added keyword arguments ``match_center``, ``match_width`` etc. to :meth:`.Mobject.become`"
263
+ msgstr ""
264
+
265
+ #: ../../source/changelog/0.12.0-changelog.rst:114
266
+ msgid ":pr:`2162`: Implemented :meth:`.MovingCamera.auto_zoom` for automatically zooming onto specified mobjects"
267
+ msgstr ""
268
+
269
+ #: ../../source/changelog/0.12.0-changelog.rst:117
270
+ msgid ":pr:`2236`: Added ``skip_animations`` argument to :meth:`.Scene.next_section`"
271
+ msgstr ""
272
+
273
+ #: ../../source/changelog/0.12.0-changelog.rst:120
274
+ msgid ":pr:`2196`: Implemented :meth:`.Line3D.parallel_to` and :meth:`.Line3D.perpendicular_to`"
275
+ msgstr ""
276
+
277
+ #: ../../source/changelog/0.12.0-changelog.rst:124
278
+ msgid "Enhancements"
279
+ msgstr ""
280
+
281
+ #: ../../source/changelog/0.12.0-changelog.rst:128
282
+ msgid ":pr:`2138`: Fixed example for :meth:`~.Vector.coordinate_label` and added more customization for :class:`~.Matrix`"
283
+ msgstr ""
284
+
285
+ #: ../../source/changelog/0.12.0-changelog.rst:127
286
+ msgid "Additional keyword arguments for :meth:`~.Vector.coordinate_label` are passed to the constructed matrix."
287
+ msgstr ""
288
+
289
+ #: ../../source/changelog/0.12.0-changelog.rst:128
290
+ msgid ":class:`~.Matrix` now accepts a ``bracket_config`` keyword argument."
291
+ msgstr ""
292
+
293
+ #: ../../source/changelog/0.12.0-changelog.rst:130
294
+ msgid ":pr:`2139`: Changed the color of :class:`~.NumberLine` from ``LIGHT_GREY`` to ``WHITE``"
295
+ msgstr ""
296
+
297
+ #: ../../source/changelog/0.12.0-changelog.rst:133
298
+ msgid ":pr:`2157`: Added :meth:`.CoordinateSystem.plot_polar_graph`"
299
+ msgstr ""
300
+
301
+ #: ../../source/changelog/0.12.0-changelog.rst:136
302
+ msgid ":pr:`2243`: Fixed wasteful recursion in :meth:`.Mobject.get_merged_array`"
303
+ msgstr ""
304
+
305
+ #: ../../source/changelog/0.12.0-changelog.rst:139
306
+ msgid ":pr:`2205`: Improved last frame output handling for the OpenGL renderer"
307
+ msgstr ""
308
+
309
+ #: ../../source/changelog/0.12.0-changelog.rst:142
310
+ msgid ":pr:`2172`: Added ``should_render`` attribute to disable rendering mobjects"
311
+ msgstr ""
312
+
313
+ #: ../../source/changelog/0.12.0-changelog.rst:145
314
+ msgid ":pr:`2182`: Changed the default width of videos in Jupyter notebooks to 60%"
315
+ msgstr ""
316
+
317
+ #: ../../source/changelog/0.12.0-changelog.rst:149
318
+ msgid "Fixed bugs"
319
+ msgstr ""
320
+
321
+ #: ../../source/changelog/0.12.0-changelog.rst:151
322
+ msgid ":pr:`2244`: Fixed :meth:`.CoordinateSystem.get_area` when using few plot points and a boundary graph"
323
+ msgstr ""
324
+
325
+ #: ../../source/changelog/0.12.0-changelog.rst:154
326
+ msgid ":pr:`2232`: Fixed :class:`.Graph` stopping to update after animating additions/deletions of vertices or edges"
327
+ msgstr ""
328
+
329
+ #: ../../source/changelog/0.12.0-changelog.rst:157
330
+ msgid ":pr:`2142`: Fixed issue with duplicates in OpenGL family and added tests"
331
+ msgstr ""
332
+
333
+ #: ../../source/changelog/0.12.0-changelog.rst:160
334
+ msgid ":pr:`2168`: Fixed order of return values of :func:`.space_ops.cartesian_to_spherical`"
335
+ msgstr ""
336
+
337
+ #: ../../source/changelog/0.12.0-changelog.rst:163
338
+ msgid ":pr:`2160`: Made projection shaders compatible with :class:`.StreamLines`"
339
+ msgstr ""
340
+
341
+ #: ../../source/changelog/0.12.0-changelog.rst:166
342
+ msgid ":pr:`2140`: Fixed passing color lists to :meth:`.Mobject.set_color` for the OpenGL renderer"
343
+ msgstr ""
344
+
345
+ #: ../../source/changelog/0.12.0-changelog.rst:169
346
+ msgid ":pr:`2211`: Fixed animations not respecting the specified rate function"
347
+ msgstr ""
348
+
349
+ #: ../../source/changelog/0.12.0-changelog.rst:172
350
+ msgid ":pr:`2161`: Fixed ``IndexOutOfBoundsError`` in TeX logging"
351
+ msgstr ""
352
+
353
+ #: ../../source/changelog/0.12.0-changelog.rst:175
354
+ msgid ":pr:`2148`: Fixed :class:`~.Arrow` tip disorientation with :meth:`.Line.put_start_and_end_on`"
355
+ msgstr ""
356
+
357
+ #: ../../source/changelog/0.12.0-changelog.rst:178
358
+ msgid ":pr:`2192`: Fixed :func:`.svg_path.string_to_numbers` sometimes returning strings"
359
+ msgstr ""
360
+
361
+ #: ../../source/changelog/0.12.0-changelog.rst:181
362
+ msgid ":pr:`2185`: Fixed type mismatch for height and width parameters of :class:`~.Text`"
363
+ msgstr ""
364
+
365
+ #: ../../source/changelog/0.12.0-changelog.rst:185
366
+ msgid "Documentation-related changes"
367
+ msgstr ""
368
+
369
+ #: ../../source/changelog/0.12.0-changelog.rst:187
370
+ msgid ":pr:`2228`: Added a new boolean operation example to the gallery"
371
+ msgstr ""
372
+
373
+ #: ../../source/changelog/0.12.0-changelog.rst:190
374
+ msgid ":pr:`2239`: Removed erroneous raw string from text tutorial"
375
+ msgstr ""
376
+
377
+ #: ../../source/changelog/0.12.0-changelog.rst:193
378
+ msgid ":pr:`2184`: Moved comments in :class:`~.VMobject` to documentation"
379
+ msgstr ""
380
+
381
+ #: ../../source/changelog/0.12.0-changelog.rst:196
382
+ msgid ":pr:`2217`: Removed superfluous dots in documentation of :class:`.Section`"
383
+ msgstr ""
384
+
385
+ #: ../../source/changelog/0.12.0-changelog.rst:199
386
+ msgid ":pr:`2215`: Fixed typo in docstring of :meth:`.ThreeDAxes.get_z_axis_label`"
387
+ msgstr ""
388
+
389
+ #: ../../source/changelog/0.12.0-changelog.rst:202
390
+ msgid ":pr:`2212`: Fixed Documentation for Sections"
391
+ msgstr ""
392
+
393
+ #: ../../source/changelog/0.12.0-changelog.rst:205
394
+ msgid ":pr:`2201`: Fixed a typo in the documentation"
395
+ msgstr ""
396
+
397
+ #: ../../source/changelog/0.12.0-changelog.rst:208
398
+ msgid ":pr:`2165`: Added Crowdin configuration and changed source files to ``.pot`` format"
399
+ msgstr ""
400
+
401
+ #: ../../source/changelog/0.12.0-changelog.rst:211
402
+ msgid ":pr:`2130`: Transferred troubleshooting installation related snippets from Discord to the documentation"
403
+ msgstr ""
404
+
405
+ #: ../../source/changelog/0.12.0-changelog.rst:214
406
+ msgid ":pr:`2176`: Modified :meth:`.Mobject.set_default` example to prevent leaking across the docs"
407
+ msgstr ""
408
+
409
+ #: ../../source/changelog/0.12.0-changelog.rst:218
410
+ msgid "Changes concerning the testing system"
411
+ msgstr ""
412
+
413
+ #: ../../source/changelog/0.12.0-changelog.rst:220
414
+ msgid ":pr:`2197`: Added tests for resolution flag"
415
+ msgstr ""
416
+
417
+ #: ../../source/changelog/0.12.0-changelog.rst:223
418
+ msgid ":pr:`2146`: Increased test coverage for OpenGL renderer"
419
+ msgstr ""
420
+
421
+ #: ../../source/changelog/0.12.0-changelog.rst:227
422
+ msgid "Changes to our development infrastructure"
423
+ msgstr ""
424
+
425
+ #: ../../source/changelog/0.12.0-changelog.rst:229
426
+ msgid ":pr:`2191`: Removed ``add-trailing-comma`` pre-commit hook"
427
+ msgstr ""
428
+
429
+ #: ../../source/changelog/0.12.0-changelog.rst:233
430
+ msgid "Code quality improvements and similar refactors"
431
+ msgstr ""
432
+
433
+ #: ../../source/changelog/0.12.0-changelog.rst:235
434
+ msgid ":pr:`2136`: Added type hints to all colors"
435
+ msgstr ""
436
+
437
+ #: ../../source/changelog/0.12.0-changelog.rst:238
438
+ msgid ":pr:`2220`: Cleanup: let ``Scene.renderer.time`` return something that makes sense"
439
+ msgstr ""
440
+
441
+ #: ../../source/changelog/0.12.0-changelog.rst:241
442
+ msgid ":pr:`2222`: Updated Classifiers in ``pyproject.toml``: removed Python 3.6, added Python 3.9"
443
+ msgstr ""
444
+
445
+ #: ../../source/changelog/0.12.0-changelog.rst:244
446
+ msgid ":pr:`2213`: Removed redundant ``partial_movie_files`` parameter in :meth:`.SceneFileWriter.combine_to_movie`"
447
+ msgstr ""
448
+
449
+ #: ../../source/changelog/0.12.0-changelog.rst:251
450
+ msgid ":pr:`2200`: Addressed some maintenance TODOs"
451
+ msgstr ""
452
+
453
+ #: ../../source/changelog/0.12.0-changelog.rst:248
454
+ msgid "Changed an `Exception` to `ValueError`"
455
+ msgstr ""
456
+
457
+ #: ../../source/changelog/0.12.0-changelog.rst:249
458
+ msgid "Fixed :meth:`.MappingCamera.points_to_pixel_coords` by adding the ``mobject`` argument of the parent"
459
+ msgstr ""
460
+
461
+ #: ../../source/changelog/0.12.0-changelog.rst:250
462
+ msgid "Rounded up width in :class:`.SplitScreenCamera`"
463
+ msgstr ""
464
+
465
+ #: ../../source/changelog/0.12.0-changelog.rst:251
466
+ msgid "Added docstring to :meth:`.Camera.capture_mobject`"
467
+ msgstr ""
468
+
469
+ #: ../../source/changelog/0.12.0-changelog.rst:253
470
+ msgid ":pr:`2194`: Added type hints to :mod:`.utils.images`"
471
+ msgstr ""
472
+
473
+ #: ../../source/changelog/0.12.0-changelog.rst:256
474
+ msgid ":pr:`2171`: Added type hints to :mod:`.utils.ipython_magic`"
475
+ msgstr ""
476
+
477
+ #: ../../source/changelog/0.12.0-changelog.rst:259
478
+ msgid ":pr:`2164`: Improved readability of regular expression"
479
+ msgstr ""
480
+
481
+ #: ../../source/changelog/0.12.0-changelog.rst:263
482
+ msgid "New releases"
483
+ msgstr ""
484
+
485
+
data/docs/i18n/gettext/changelog/0.13.0-changelog.pot ADDED
@@ -0,0 +1,381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.13.0-changelog.rst:3
10
+ msgid "v0.13.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.13.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.13.0-changelog.rst:5
18
+ msgid "December 04, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.13.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.13.0-changelog.rst:10
26
+ msgid "A total of 27 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.13.0-changelog.rst:14
30
+ #: ../../source/changelog/0.13.0-changelog.rst:38
31
+ msgid "Alex Lembcke"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.13.0-changelog.rst:15
35
+ #: ../../source/changelog/0.13.0-changelog.rst:39
36
+ msgid "Benjamin Hackl"
37
+ msgstr ""
38
+
39
+ #: ../../source/changelog/0.13.0-changelog.rst:16
40
+ #: ../../source/changelog/0.13.0-changelog.rst:40
41
+ msgid "Christopher Besch"
42
+ msgstr ""
43
+
44
+ #: ../../source/changelog/0.13.0-changelog.rst:17
45
+ #: ../../source/changelog/0.13.0-changelog.rst:41
46
+ msgid "Darylgolden"
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.13.0-changelog.rst:18
50
+ msgid "Filip +"
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.13.0-changelog.rst:19
54
+ msgid "John Ingles +"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.13.0-changelog.rst:20
58
+ #: ../../source/changelog/0.13.0-changelog.rst:45
59
+ msgid "Laith Bahodi"
60
+ msgstr ""
61
+
62
+ #: ../../source/changelog/0.13.0-changelog.rst:21
63
+ msgid "Lucas Ricci +"
64
+ msgstr ""
65
+
66
+ #: ../../source/changelog/0.13.0-changelog.rst:22
67
+ msgid "Marcin Serwin +"
68
+ msgstr ""
69
+
70
+ #: ../../source/changelog/0.13.0-changelog.rst:23
71
+ msgid "Mysaa"
72
+ msgstr ""
73
+
74
+ #: ../../source/changelog/0.13.0-changelog.rst:24
75
+ #: ../../source/changelog/0.13.0-changelog.rst:47
76
+ msgid "Naveen M K"
77
+ msgstr ""
78
+
79
+ #: ../../source/changelog/0.13.0-changelog.rst:25
80
+ msgid "Ricky +"
81
+ msgstr ""
82
+
83
+ #: ../../source/changelog/0.13.0-changelog.rst:26
84
+ #: ../../source/changelog/0.13.0-changelog.rst:50
85
+ msgid "Viicos"
86
+ msgstr ""
87
+
88
+ #: ../../source/changelog/0.13.0-changelog.rst:27
89
+ msgid "ask09ok +"
90
+ msgstr ""
91
+
92
+ #: ../../source/changelog/0.13.0-changelog.rst:28
93
+ msgid "citrusmunch +"
94
+ msgstr ""
95
+
96
+ #: ../../source/changelog/0.13.0-changelog.rst:29
97
+ #: ../../source/changelog/0.13.0-changelog.rst:52
98
+ msgid "icedcoffeeee"
99
+ msgstr ""
100
+
101
+ #: ../../source/changelog/0.13.0-changelog.rst:30
102
+ msgid "mostlyaman +"
103
+ msgstr ""
104
+
105
+ #: ../../source/changelog/0.13.0-changelog.rst:31
106
+ msgid "vmiezys +"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.13.0-changelog.rst:32
110
+ msgid "zhujisheng +"
111
+ msgstr ""
112
+
113
+ #: ../../source/changelog/0.13.0-changelog.rst:35
114
+ msgid "The patches included in this release have been reviewed by the following contributors."
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.13.0-changelog.rst:42
118
+ msgid "Filip"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.13.0-changelog.rst:43
122
+ msgid "Hugues Devimeux"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.13.0-changelog.rst:44
126
+ msgid "Jan-Hendrik Müller"
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.13.0-changelog.rst:46
130
+ msgid "Lucas Ricci"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.13.0-changelog.rst:48
134
+ msgid "Oliver"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.13.0-changelog.rst:49
138
+ msgid "Ryan McCauley"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.13.0-changelog.rst:51
142
+ msgid "ask09ok"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.13.0-changelog.rst:53
146
+ msgid "mostlyaman"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.13.0-changelog.rst:56
150
+ msgid "Pull requests merged"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.13.0-changelog.rst:58
154
+ msgid "A total of 39 pull requests were merged for this release."
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.13.0-changelog.rst:61
158
+ msgid "Highlights"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.13.0-changelog.rst:63
162
+ msgid ":pr:`2313`: Finalized translation process and documentation"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.13.0-changelog.rst:67
166
+ msgid "Deprecated classes and functions"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.13.0-changelog.rst:75
170
+ msgid ":pr:`2331`: Removed deprecations up to ``v0.12.0``"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.13.0-changelog.rst:70
174
+ msgid "Removed ``distance`` parameters from :class:`~.ThreeDCamera` (replacement: ``focal_distance``)"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.13.0-changelog.rst:71
178
+ msgid "Removed ``min_distance_to_new_point`` parameter from :class:`~.TracedPath`"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.13.0-changelog.rst:72
182
+ msgid "Removed ``positive_space_ratio`` and ``dash_spacing`` parameters from :class:`~.DashedVMobject`"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.13.0-changelog.rst:73
186
+ msgid "Removed ``<method>_in_place`` methods from :mod:`.mobject`"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.13.0-changelog.rst:74
190
+ msgid "Removed ``ReconfigurableScene``"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.13.0-changelog.rst:75
194
+ msgid "Removed ``SampleSpaceScene``"
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.13.0-changelog.rst:77
198
+ msgid ":pr:`2312`: Replaced all occurrences of ``set_submobjects``"
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.13.0-changelog.rst:81
202
+ msgid "New features"
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.13.0-changelog.rst:85
206
+ msgid ":pr:`2314`: Added basic support for adding subcaptions via :meth:`.Scene.add_subcaption`"
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.13.0-changelog.rst:84
210
+ msgid "New method :meth:`.Scene.add_subcaption`"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.13.0-changelog.rst:85
214
+ msgid "New keyword arguments ``subcaption``, ``subcaption_duration``, ``subcaption_offset`` for :meth:`.Scene.play`"
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.13.0-changelog.rst:87
218
+ msgid ":pr:`2267`: Implemented :meth:`.CoordinateSystem.plot_antiderivative_graph`"
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.13.0-changelog.rst:91
222
+ msgid "Enhancements"
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.13.0-changelog.rst:93
226
+ msgid ":pr:`2347`: Moved ``manim_directive.py`` to ``manim.utils.docbuild``"
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.13.0-changelog.rst:96
230
+ msgid ":pr:`2340`: Added documentation for :mod:`.animation.growing` and improved :class:`.SpinInFromNothing`"
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.13.0-changelog.rst:99
234
+ msgid ":pr:`2343`: Replaced current tree layout algorithm with SageMath's for improved layout of large trees"
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.13.0-changelog.rst:102
238
+ msgid ":pr:`2351`: Added missing ``**kwargs`` parameter to :meth:`.Table.add_highlighted_cell`"
239
+ msgstr ""
240
+
241
+ #: ../../source/changelog/0.13.0-changelog.rst:105
242
+ msgid ":pr:`2344`: Resized SVG logos, fit content to canvas"
243
+ msgstr ""
244
+
245
+ #: ../../source/changelog/0.13.0-changelog.rst:109
246
+ msgid "Fixed bugs"
247
+ msgstr ""
248
+
249
+ #: ../../source/changelog/0.13.0-changelog.rst:111
250
+ msgid ":pr:`2359`: Resolved ``ValueError`` when calling ``manim cfg write``"
251
+ msgstr ""
252
+
253
+ #: ../../source/changelog/0.13.0-changelog.rst:114
254
+ msgid ":pr:`2276`: Fixed bug with alignment of z-axis in :class:`~.ThreeDAxes`"
255
+ msgstr ""
256
+
257
+ #: ../../source/changelog/0.13.0-changelog.rst:117
258
+ msgid ":pr:`2325`: Several improvements to handling of ``quality`` argument"
259
+ msgstr ""
260
+
261
+ #: ../../source/changelog/0.13.0-changelog.rst:120
262
+ msgid ":pr:`2335`: Fixed bug with zooming camera and :class:`~.PointCloud`"
263
+ msgstr ""
264
+
265
+ #: ../../source/changelog/0.13.0-changelog.rst:123
266
+ msgid ":pr:`2328`: Fixed bug causing incorrect RGBA values to be passed to cairo"
267
+ msgstr ""
268
+
269
+ #: ../../source/changelog/0.13.0-changelog.rst:126
270
+ msgid ":pr:`2292`: Fixed positioning of :class:`~.Flash`"
271
+ msgstr ""
272
+
273
+ #: ../../source/changelog/0.13.0-changelog.rst:129
274
+ msgid ":pr:`2262`: Fixed wrong cell coordinates with :meth:`.Table.get_cell` after scaling"
275
+ msgstr ""
276
+
277
+ #: ../../source/changelog/0.13.0-changelog.rst:132
278
+ msgid ":pr:`2280`: Fixed :class:`~.DecimalNumber` color when number of displayed digits changes"
279
+ msgstr ""
280
+
281
+ #: ../../source/changelog/0.13.0-changelog.rst:136
282
+ msgid "Documentation-related changes"
283
+ msgstr ""
284
+
285
+ #: ../../source/changelog/0.13.0-changelog.rst:138
286
+ msgid ":pr:`2354`: Port over docs and typings from ``mobject.py`` and ``vectorized_mobject.py`` to their OpenGL counterparts"
287
+ msgstr ""
288
+
289
+ #: ../../source/changelog/0.13.0-changelog.rst:141
290
+ msgid ":pr:`2350`: Added mention of Manim sideview extension for VS Code"
291
+ msgstr ""
292
+
293
+ #: ../../source/changelog/0.13.0-changelog.rst:144
294
+ msgid ":pr:`2342`: Removed :meth:`~.CoordinateSystem.get_graph` usage from :class:`~.Axes` example"
295
+ msgstr ""
296
+
297
+ #: ../../source/changelog/0.13.0-changelog.rst:147
298
+ msgid ":pr:`2216`: Edited and added new sections to the quickstart tutorial"
299
+ msgstr ""
300
+
301
+ #: ../../source/changelog/0.13.0-changelog.rst:150
302
+ msgid ":pr:`2279`: Added documentation for discontinuous functions"
303
+ msgstr ""
304
+
305
+ #: ../../source/changelog/0.13.0-changelog.rst:153
306
+ msgid ":pr:`2319`: Swapped ``dotL`` and ``dotR`` in :meth:`.Mobject.interpolate` example"
307
+ msgstr ""
308
+
309
+ #: ../../source/changelog/0.13.0-changelog.rst:156
310
+ msgid ":pr:`2230`: Copyedited building blocks tutorial"
311
+ msgstr ""
312
+
313
+ #: ../../source/changelog/0.13.0-changelog.rst:159
314
+ msgid ":pr:`2310`: Clarified that Manim does not support Python 3.10 yet in the documentation"
315
+ msgstr ""
316
+
317
+ #: ../../source/changelog/0.13.0-changelog.rst:162
318
+ msgid ":pr:`2294`: Made documentation front page more concise and rearranged order of tutorials"
319
+ msgstr ""
320
+
321
+ #: ../../source/changelog/0.13.0-changelog.rst:165
322
+ msgid ":pr:`2287`: Replace link to old interactive notebook"
323
+ msgstr ""
324
+
325
+ #: ../../source/changelog/0.13.0-changelog.rst:169
326
+ msgid "Changes concerning the testing system"
327
+ msgstr ""
328
+
329
+ #: ../../source/changelog/0.13.0-changelog.rst:171
330
+ msgid ":pr:`2346`: Made ``frames_comparsion`` decorator for frame testing a proper module of the library"
331
+ msgstr ""
332
+
333
+ #: ../../source/changelog/0.13.0-changelog.rst:174
334
+ msgid ":pr:`2318`: Added tests for ``remover`` keyword argument of :class:`~.AnimationGroup`"
335
+ msgstr ""
336
+
337
+ #: ../../source/changelog/0.13.0-changelog.rst:177
338
+ msgid ":pr:`2301`: Added a test for :meth:`.ThreeDScene.add_fixed_in_frame_mobjects`"
339
+ msgstr ""
340
+
341
+ #: ../../source/changelog/0.13.0-changelog.rst:180
342
+ msgid ":pr:`2274`: Optimized some tests to reduce duration"
343
+ msgstr ""
344
+
345
+ #: ../../source/changelog/0.13.0-changelog.rst:183
346
+ msgid ":pr:`2272`: Added test for :class:`~.Broadcast`"
347
+ msgstr ""
348
+
349
+ #: ../../source/changelog/0.13.0-changelog.rst:187
350
+ msgid "Code quality improvements and similar refactors"
351
+ msgstr ""
352
+
353
+ #: ../../source/changelog/0.13.0-changelog.rst:189
354
+ msgid ":pr:`2327`: Corrected type hint for ``labels`` keyword argument of :class:`~.Graph`"
355
+ msgstr ""
356
+
357
+ #: ../../source/changelog/0.13.0-changelog.rst:192
358
+ msgid ":pr:`2329`: Remove unintended line break in README"
359
+ msgstr ""
360
+
361
+ #: ../../source/changelog/0.13.0-changelog.rst:195
362
+ msgid ":pr:`2305`: Corrected type hint ``discontinuities`` argument for :class:`~.ParametricFunction`"
363
+ msgstr ""
364
+
365
+ #: ../../source/changelog/0.13.0-changelog.rst:198
366
+ msgid ":pr:`2300`: Add contact email for PyPi"
367
+ msgstr ""
368
+
369
+ #: ../../source/changelog/0.13.0-changelog.rst:202
370
+ msgid "New releases"
371
+ msgstr ""
372
+
373
+ #: ../../source/changelog/0.13.0-changelog.rst:204
374
+ msgid ":pr:`2353`: Prepare new release: ``v0.13.0``"
375
+ msgstr ""
376
+
377
+ #: ../../source/changelog/0.13.0-changelog.rst:208
378
+ msgid "Unclassified changes"
379
+ msgstr ""
380
+
381
+
data/docs/i18n/gettext/changelog/0.13.1-changelog.pot ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.13.1-changelog.rst:3
10
+ msgid "v0.13.1"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.13.1-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.13.1-changelog.rst:5
18
+ msgid "December 05, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.13.1-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.13.1-changelog.rst:10
26
+ msgid "A total of 2 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.13.1-changelog.rst:14
30
+ msgid "Benjamin Hackl"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.13.1-changelog.rst:17
34
+ msgid "The patches included in this release have been reviewed by the following contributors."
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.13.1-changelog.rst:20
38
+ msgid "Laith Bahodi"
39
+ msgstr ""
40
+
41
+ #: ../../source/changelog/0.13.1-changelog.rst:23
42
+ msgid "Pull requests merged"
43
+ msgstr ""
44
+
45
+ #: ../../source/changelog/0.13.1-changelog.rst:25
46
+ msgid "A total of 2 pull requests were merged for this release."
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.13.1-changelog.rst:28
50
+ msgid "Fixed bugs"
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.13.1-changelog.rst:30
54
+ msgid ":pr:`2363`: Fixed broken IPython magic command"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.13.1-changelog.rst:34
58
+ msgid "New releases"
59
+ msgstr ""
60
+
61
+
data/docs/i18n/gettext/changelog/0.14.0-changelog.pot ADDED
@@ -0,0 +1,333 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.14.0-changelog.rst:3
10
+ msgid "v0.14.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.14.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.14.0-changelog.rst:5
18
+ msgid "January 07, 2022"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.14.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.14.0-changelog.rst:10
26
+ msgid "A total of 29 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.14.0-changelog.rst:14
30
+ #: ../../source/changelog/0.14.0-changelog.rst:38
31
+ msgid "Benjamin Hackl"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.14.0-changelog.rst:15
35
+ msgid "BorisTheBrave +"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.14.0-changelog.rst:16
39
+ #: ../../source/changelog/0.14.0-changelog.rst:41
40
+ msgid "Darylgolden"
41
+ msgstr ""
42
+
43
+ #: ../../source/changelog/0.14.0-changelog.rst:17
44
+ #: ../../source/changelog/0.14.0-changelog.rst:42
45
+ msgid "GameDungeon"
46
+ msgstr ""
47
+
48
+ #: ../../source/changelog/0.14.0-changelog.rst:18
49
+ msgid "Gergely Bencsik +"
50
+ msgstr ""
51
+
52
+ #: ../../source/changelog/0.14.0-changelog.rst:19
53
+ #: ../../source/changelog/0.14.0-changelog.rst:45
54
+ msgid "Jan-Hendrik Müller"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.14.0-changelog.rst:20
58
+ msgid "Jihoon +"
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.14.0-changelog.rst:21
62
+ msgid "Kian Kasad +"
63
+ msgstr ""
64
+
65
+ #: ../../source/changelog/0.14.0-changelog.rst:22
66
+ msgid "Kiran-Raj-Dev +"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.14.0-changelog.rst:23
70
+ #: ../../source/changelog/0.14.0-changelog.rst:47
71
+ msgid "Laith Bahodi"
72
+ msgstr ""
73
+
74
+ #: ../../source/changelog/0.14.0-changelog.rst:24
75
+ msgid "Leo Xu +"
76
+ msgstr ""
77
+
78
+ #: ../../source/changelog/0.14.0-changelog.rst:25
79
+ #: ../../source/changelog/0.14.0-changelog.rst:50
80
+ msgid "Marcin Serwin"
81
+ msgstr ""
82
+
83
+ #: ../../source/changelog/0.14.0-changelog.rst:26
84
+ msgid "Matt Gleich +"
85
+ msgstr ""
86
+
87
+ #: ../../source/changelog/0.14.0-changelog.rst:27
88
+ #: ../../source/changelog/0.14.0-changelog.rst:51
89
+ msgid "Naveen M K"
90
+ msgstr ""
91
+
92
+ #: ../../source/changelog/0.14.0-changelog.rst:28
93
+ msgid "Steven nguyen +"
94
+ msgstr ""
95
+
96
+ #: ../../source/changelog/0.14.0-changelog.rst:29
97
+ msgid "Vectozavr +"
98
+ msgstr ""
99
+
100
+ #: ../../source/changelog/0.14.0-changelog.rst:30
101
+ #: ../../source/changelog/0.14.0-changelog.rst:54
102
+ msgid "Viicos"
103
+ msgstr ""
104
+
105
+ #: ../../source/changelog/0.14.0-changelog.rst:31
106
+ msgid "citrusmunch"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.14.0-changelog.rst:32
110
+ msgid "netwizard22 +"
111
+ msgstr ""
112
+
113
+ #: ../../source/changelog/0.14.0-changelog.rst:35
114
+ msgid "The patches included in this release have been reviewed by the following contributors."
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.14.0-changelog.rst:39
118
+ msgid "BorisTheBrave"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.14.0-changelog.rst:40
122
+ msgid "Christopher Besch"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.14.0-changelog.rst:43
126
+ msgid "Gergely Bencsik"
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.14.0-changelog.rst:44
130
+ msgid "Hugues Devimeux"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.14.0-changelog.rst:46
134
+ msgid "Kiran-Raj-Dev"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.14.0-changelog.rst:48
138
+ msgid "Leo Xu"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.14.0-changelog.rst:49
142
+ msgid "Lucas Ricci"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.14.0-changelog.rst:52
146
+ msgid "Raghav Goel"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.14.0-changelog.rst:53
150
+ msgid "Ryan McCauley"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.14.0-changelog.rst:55
154
+ msgid "icedcoffeeee"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.14.0-changelog.rst:58
158
+ msgid "Pull requests merged"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.14.0-changelog.rst:60
162
+ msgid "A total of 29 pull requests were merged for this release."
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.14.0-changelog.rst:63
166
+ msgid "Deprecated classes and functions"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.14.0-changelog.rst:69
170
+ msgid ":pr:`2390`: Removed deprecations up to `v0.13.0`"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.14.0-changelog.rst:66
174
+ msgid "Removed ``get_graph``, ``get_implicit_curve``, ``get_derivative_graph``, ``get_line_graph`` and ``get_parametric_curve`` in favour of their ``plot`` variants"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.14.0-changelog.rst:67
178
+ msgid "Removed ``FullScreenFadeRectangle`` and ``PictureInPictureFrame``"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.14.0-changelog.rst:68
182
+ msgid "Removed ``path_arc`` parameter from :class:`~.SpinInFromNothing`"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.14.0-changelog.rst:69
186
+ msgid "Removed ``set_submobjects`` method from ``opengl_mobject.py``"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.14.0-changelog.rst:72
190
+ msgid "New features"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.14.0-changelog.rst:75
194
+ msgid ":pr:`2341`: Update :class:`~.Text` to use new ``ManimPango`` color setting"
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.14.0-changelog.rst:75
198
+ msgid ":class:`~.Text` class now uses color setting introduced in ``ManimPango 0.4.0`` for color and gradient."
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.14.0-changelog.rst:78
202
+ msgid ":pr:`2397`: Added ``label_constructor`` parameter for :class:`~.NumberLine`"
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.14.0-changelog.rst:78
206
+ msgid "Allows changing the class that will be used to construct :class:`~.Axes` and :class:`~.NumberLine` labels by default. Makes it possible to easily use :class:`~.Text` for labels if needed."
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.14.0-changelog.rst:81
210
+ msgid "Enhancements"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.14.0-changelog.rst:83
214
+ msgid ":pr:`2383`: Made :meth:`.Surface.set_fill_by_value` support gradients along different axes"
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.14.0-changelog.rst:86
218
+ msgid ":pr:`2388`: Added ``about_point`` keyword argument to :class:`~.ApplyMatrix`"
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.14.0-changelog.rst:89
222
+ msgid ":pr:`2395`: Add documentation for paths functions"
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.14.0-changelog.rst:94
226
+ msgid ":pr:`2372`: Improved :class:`~.DashedVMobject`"
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.14.0-changelog.rst:93
230
+ msgid ":class:`~.DashedVMobject` used to create stretched and uneven dashes on most plotted curves. Now the dash lengths are equalized. An option is reserved to use the old method. New keyword argument: ``dash_offset``. This parameter shifts the starting point."
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.14.0-changelog.rst:97
234
+ msgid "Fixed bugs"
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.14.0-changelog.rst:99
238
+ msgid ":pr:`2409`: Fixed performance degradation by trimming empty curves from paths when calling :meth:`.VMobject.align_points`"
239
+ msgstr ""
240
+
241
+ #: ../../source/changelog/0.14.0-changelog.rst:102
242
+ msgid ":pr:`2392`: Fixed ``ZeroDivisionError`` in :mod:`~.mobject.three_dimensions`"
243
+ msgstr ""
244
+
245
+ #: ../../source/changelog/0.14.0-changelog.rst:105
246
+ msgid ":pr:`2362`: Fixed phi updater in :meth:`.ThreeDScene.begin_3dillusion_camera_rotation`"
247
+ msgstr ""
248
+
249
+ #: ../../source/changelog/0.14.0-changelog.rst:109
250
+ msgid "Documentation-related changes"
251
+ msgstr ""
252
+
253
+ #: ../../source/changelog/0.14.0-changelog.rst:111
254
+ msgid ":pr:`2415`: Removed instructions on using and installing Docker in README"
255
+ msgstr ""
256
+
257
+ #: ../../source/changelog/0.14.0-changelog.rst:114
258
+ msgid ":pr:`2414`: Made improvements to the :doc:`/guides/configuration` tutorial"
259
+ msgstr ""
260
+
261
+ #: ../../source/changelog/0.14.0-changelog.rst:117
262
+ msgid ":pr:`2423`: Changed recommendation to ``mactex-no-gui`` from ``mactex`` for macOS install"
263
+ msgstr ""
264
+
265
+ #: ../../source/changelog/0.14.0-changelog.rst:120
266
+ msgid ":pr:`2407`: Clarified docstrings of :meth:`.Mobject.animate`, :meth:`.Mobject.set` and :class:`~.Variable`"
267
+ msgstr ""
268
+
269
+ #: ../../source/changelog/0.14.0-changelog.rst:123
270
+ msgid ":pr:`2352`: Added Crowdin badge"
271
+ msgstr ""
272
+
273
+ #: ../../source/changelog/0.14.0-changelog.rst:126
274
+ msgid ":pr:`2371`: Added ``dvips`` to list of required LaTeX packages on Linux"
275
+ msgstr ""
276
+
277
+ #: ../../source/changelog/0.14.0-changelog.rst:129
278
+ msgid ":pr:`2403`: Improved docstring of :class:`~.ApplyMethod` and removed propagated ``__init__`` docstring"
279
+ msgstr ""
280
+
281
+ #: ../../source/changelog/0.14.0-changelog.rst:132
282
+ msgid ":pr:`2391`: Fixed typo in parameter name in documentation of :class:`~.NumberLine`"
283
+ msgstr ""
284
+
285
+ #: ../../source/changelog/0.14.0-changelog.rst:135
286
+ msgid ":pr:`2368`: Added note in Internationalization"
287
+ msgstr ""
288
+
289
+ #: ../../source/changelog/0.14.0-changelog.rst:139
290
+ msgid "Code quality improvements and similar refactors"
291
+ msgstr ""
292
+
293
+ #: ../../source/changelog/0.14.0-changelog.rst:141
294
+ msgid ":pr:`2408`: Removed various return annotations that were stifling type inference"
295
+ msgstr ""
296
+
297
+ #: ../../source/changelog/0.14.0-changelog.rst:144
298
+ msgid ":pr:`2424`: Removed ``strings.py``"
299
+ msgstr ""
300
+
301
+ #: ../../source/changelog/0.14.0-changelog.rst:147
302
+ msgid ":pr:`1972`: Added support for MyPy"
303
+ msgstr ""
304
+
305
+ #: ../../source/changelog/0.14.0-changelog.rst:150
306
+ msgid ":pr:`2410`: Fixed Flake8"
307
+ msgstr ""
308
+
309
+ #: ../../source/changelog/0.14.0-changelog.rst:153
310
+ msgid ":pr:`2401`: Fixed type annotations in :mod:`.mobject.three_dimensions`"
311
+ msgstr ""
312
+
313
+ #: ../../source/changelog/0.14.0-changelog.rst:156
314
+ msgid ":pr:`2405`: Removed some unused OpenGL files"
315
+ msgstr ""
316
+
317
+ #: ../../source/changelog/0.14.0-changelog.rst:159
318
+ msgid ":pr:`2399`: Fixed type annotations in :mod:`~.mobject.table`"
319
+ msgstr ""
320
+
321
+ #: ../../source/changelog/0.14.0-changelog.rst:162
322
+ msgid ":pr:`2385`: Made comments in quickstart tutorial more precise"
323
+ msgstr ""
324
+
325
+ #: ../../source/changelog/0.14.0-changelog.rst:165
326
+ msgid ":pr:`2377`: Fixed type hint for an argument of :class:`~.MoveAlongPath`"
327
+ msgstr ""
328
+
329
+ #: ../../source/changelog/0.14.0-changelog.rst:169
330
+ msgid "New releases"
331
+ msgstr ""
332
+
333
+
data/docs/i18n/gettext/changelog/0.15.0-changelog.pot ADDED
@@ -0,0 +1,565 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.15.0-changelog.rst:3
10
+ msgid "v0.15.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.15.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.15.0-changelog.rst:5
18
+ msgid "February 26, 2022"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.15.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.15.0-changelog.rst:10
26
+ msgid "A total of 34 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.15.0-changelog.rst:14
30
+ msgid "Alex Lembcke"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.15.0-changelog.rst:15
34
+ msgid "AnonymoZ +"
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.15.0-changelog.rst:16
38
+ #: ../../source/changelog/0.15.0-changelog.rst:44
39
+ msgid "Benjamin Hackl"
40
+ msgstr ""
41
+
42
+ #: ../../source/changelog/0.15.0-changelog.rst:17
43
+ #: ../../source/changelog/0.15.0-changelog.rst:46
44
+ msgid "Darylgolden"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.15.0-changelog.rst:18
48
+ msgid "Eshaan Naga Venkata +"
49
+ msgstr ""
50
+
51
+ #: ../../source/changelog/0.15.0-changelog.rst:19
52
+ msgid "Faruk D. +"
53
+ msgstr ""
54
+
55
+ #: ../../source/changelog/0.15.0-changelog.rst:20
56
+ #: ../../source/changelog/0.15.0-changelog.rst:48
57
+ msgid "GameDungeon"
58
+ msgstr ""
59
+
60
+ #: ../../source/changelog/0.15.0-changelog.rst:21
61
+ msgid "Kevin Cen +"
62
+ msgstr ""
63
+
64
+ #: ../../source/changelog/0.15.0-changelog.rst:22
65
+ #: ../../source/changelog/0.15.0-changelog.rst:50
66
+ msgid "Laith Bahodi"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.15.0-changelog.rst:23
70
+ msgid "Leo Xu"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.15.0-changelog.rst:24
74
+ msgid "Lucas Ricci"
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.15.0-changelog.rst:25
78
+ #: ../../source/changelog/0.15.0-changelog.rst:52
79
+ msgid "Marcin Serwin"
80
+ msgstr ""
81
+
82
+ #: ../../source/changelog/0.15.0-changelog.rst:26
83
+ msgid "Michael McNeil Forbes +"
84
+ msgstr ""
85
+
86
+ #: ../../source/changelog/0.15.0-changelog.rst:27
87
+ msgid "Mysaa"
88
+ msgstr ""
89
+
90
+ #: ../../source/changelog/0.15.0-changelog.rst:28
91
+ #: ../../source/changelog/0.15.0-changelog.rst:53
92
+ msgid "Naveen M K"
93
+ msgstr ""
94
+
95
+ #: ../../source/changelog/0.15.0-changelog.rst:29
96
+ msgid "Pierre Couy +"
97
+ msgstr ""
98
+
99
+ #: ../../source/changelog/0.15.0-changelog.rst:30
100
+ msgid "Simon Ellmann +"
101
+ msgstr ""
102
+
103
+ #: ../../source/changelog/0.15.0-changelog.rst:31
104
+ msgid "Tommy Chu +"
105
+ msgstr ""
106
+
107
+ #: ../../source/changelog/0.15.0-changelog.rst:32
108
+ msgid "Viicos"
109
+ msgstr ""
110
+
111
+ #: ../../source/changelog/0.15.0-changelog.rst:33
112
+ #: ../../source/changelog/0.15.0-changelog.rst:58
113
+ msgid "ad_chaos"
114
+ msgstr ""
115
+
116
+ #: ../../source/changelog/0.15.0-changelog.rst:34
117
+ msgid "betafcc +"
118
+ msgstr ""
119
+
120
+ #: ../../source/changelog/0.15.0-changelog.rst:35
121
+ msgid "friedkeenan"
122
+ msgstr ""
123
+
124
+ #: ../../source/changelog/0.15.0-changelog.rst:36
125
+ #: ../../source/changelog/0.15.0-changelog.rst:60
126
+ msgid "icedcoffeeee"
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.15.0-changelog.rst:37
130
+ msgid "vmoros +"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.15.0-changelog.rst:38
134
+ msgid "鹤翔万里"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.15.0-changelog.rst:41
138
+ msgid "The patches included in this release have been reviewed by the following contributors."
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.15.0-changelog.rst:45
142
+ msgid "Christopher Besch"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.15.0-changelog.rst:47
146
+ msgid "Eshaan Naga Venkata"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.15.0-changelog.rst:49
150
+ msgid "Jan-Hendrik Müller"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.15.0-changelog.rst:51
154
+ msgid "Marcin Kurczewski"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.15.0-changelog.rst:54
158
+ msgid "Raghav Goel"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.15.0-changelog.rst:55
162
+ msgid "RomainJMend"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.15.0-changelog.rst:56
166
+ msgid "Ryan McCauley"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.15.0-changelog.rst:57
170
+ msgid "Tommy Chu"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.15.0-changelog.rst:59
174
+ msgid "betafcc"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.15.0-changelog.rst:63
178
+ msgid "Pull requests merged"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.15.0-changelog.rst:65
182
+ msgid "A total of 71 pull requests were merged for this release."
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.15.0-changelog.rst:68
186
+ msgid "Breaking changes"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.15.0-changelog.rst:71
190
+ msgid ":pr:`2476`: Improved structure of the :mod:`.mobject` module"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.15.0-changelog.rst:71
194
+ msgid "Arrow tips now have to be imported from ``manim.mobject.geometry.tips`` instead of ``manim.mobject.geometry``."
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.15.0-changelog.rst:75
198
+ msgid ":pr:`2387`: Refactored :class:`~.BarChart` and made it inherit from :class:`~.Axes`"
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.15.0-changelog.rst:74
202
+ msgid ":class:`~.BarChart` now inherits from :class:`~.Axes`, allowing it to use :class:`~.Axes`' methods. Also improves :class:`~.BarChart`'s configuration and ease of use."
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.15.0-changelog.rst:75
206
+ msgid "Added :meth:`~.BarChart.get_bar_labels` to annotate the value of each bar of a :class:`~.BarChart`."
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.15.0-changelog.rst:78
210
+ msgid "Deprecated classes and functions"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.15.0-changelog.rst:81
214
+ msgid ":pr:`2568`: Removed Deprecated Methods"
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.15.0-changelog.rst:81
218
+ msgid "Removed methods and classes that were deprecated since v0.10.0 and v0.11.0"
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.15.0-changelog.rst:83
222
+ msgid ":pr:`2457`: Deprecated :class:`.ShowCreationThenFadeOut`"
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.15.0-changelog.rst:87
226
+ msgid "New features"
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.15.0-changelog.rst:89
230
+ msgid ":pr:`2442`: Added ``media_embed`` config option to control whether media in Jupyter notebooks is embedded"
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.15.0-changelog.rst:96
234
+ msgid ":pr:`2504`: Added finer control over :meth:`.Scene.wait` being static (i.e., no updaters) or not"
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.15.0-changelog.rst:93
238
+ msgid "Added keyword argument ``frozen_frame`` to :class:`.Wait` and :meth:`.Scene.wait`"
239
+ msgstr ""
240
+
241
+ #: ../../source/changelog/0.15.0-changelog.rst:94
242
+ msgid "New convenience method: :meth:`.Scene.pause` (alias for ``Scene.wait(frozen_frame=True)``)"
243
+ msgstr ""
244
+
245
+ #: ../../source/changelog/0.15.0-changelog.rst:95
246
+ msgid "Changed default behavior for OpenGL updaters: updater functions are now not called by default when they are added"
247
+ msgstr ""
248
+
249
+ #: ../../source/changelog/0.15.0-changelog.rst:96
250
+ msgid "Changed default behavior of :meth:`.Scene.should_mobjects_update`: made it respect the set value of ``Wait.frozen_frame``, changed automatic determination of frozen frame state to also consider Scene updaters"
251
+ msgstr ""
252
+
253
+ #: ../../source/changelog/0.15.0-changelog.rst:99
254
+ msgid "Enhancements"
255
+ msgstr ""
256
+
257
+ #: ../../source/changelog/0.15.0-changelog.rst:101
258
+ msgid ":pr:`2478`: Alternative scaling for tree graph layout"
259
+ msgstr ""
260
+
261
+ #: ../../source/changelog/0.15.0-changelog.rst:104
262
+ msgid ":pr:`2565`: Allowed passing vertex configuration keyword arguments to :meth:`.Graph.add_edges`"
263
+ msgstr ""
264
+
265
+ #: ../../source/changelog/0.15.0-changelog.rst:107
266
+ msgid ":pr:`2467`: :class:`~.MathTex`, :class:`~.Tex`, :class:`~.Text` and :class:`~.MarkupText` inherit color from their parent mobjects"
267
+ msgstr ""
268
+
269
+ #: ../../source/changelog/0.15.0-changelog.rst:110
270
+ msgid ":pr:`2537`: Added support for PySide coordinate system"
271
+ msgstr ""
272
+
273
+ #: ../../source/changelog/0.15.0-changelog.rst:113
274
+ msgid ":pr:`2158`: Added OpenGL compatibility to :meth:`.ThreeDScene.add_fixed_orientation_mobjects` and :meth:`.ThreeDScene.add_fixed_in_frame_mobjects`"
275
+ msgstr ""
276
+
277
+ #: ../../source/changelog/0.15.0-changelog.rst:116
278
+ msgid ":pr:`2535`: Implemented performance enhancement for :meth:`.VMobject.insert_n_curves_to_point_list`"
279
+ msgstr ""
280
+
281
+ #: ../../source/changelog/0.15.0-changelog.rst:119
282
+ msgid ":pr:`2516`: Cached view matrix for :class:`~.OpenGLCamera`"
283
+ msgstr ""
284
+
285
+ #: ../../source/changelog/0.15.0-changelog.rst:122
286
+ msgid ":pr:`2508`: Improve performance for :meth:`.Mobject.become`"
287
+ msgstr ""
288
+
289
+ #: ../../source/changelog/0.15.0-changelog.rst:125
290
+ msgid ":pr:`2332`: Changed ``color``, ``stroke_color`` and ``fill_color`` attributes to properties"
291
+ msgstr ""
292
+
293
+ #: ../../source/changelog/0.15.0-changelog.rst:131
294
+ msgid ":pr:`2396`: Fixed animations introducing or removing objects"
295
+ msgstr ""
296
+
297
+ #: ../../source/changelog/0.15.0-changelog.rst:129
298
+ msgid ":class:`.ShowPassingFlash` now removes objects when the animation is finished"
299
+ msgstr ""
300
+
301
+ #: ../../source/changelog/0.15.0-changelog.rst:130
302
+ msgid "Added ``introducer`` keyword argument to :class:`.Animation` analogous to ``remover``"
303
+ msgstr ""
304
+
305
+ #: ../../source/changelog/0.15.0-changelog.rst:131
306
+ msgid "Updated :class:`.Graph` vertex addition handling"
307
+ msgstr ""
308
+
309
+ #: ../../source/changelog/0.15.0-changelog.rst:134
310
+ msgid "Fixed bugs"
311
+ msgstr ""
312
+
313
+ #: ../../source/changelog/0.15.0-changelog.rst:136
314
+ msgid ":pr:`2574`: Improved Error in :mod:`.utils.tex_file_writing`"
315
+ msgstr ""
316
+
317
+ #: ../../source/changelog/0.15.0-changelog.rst:139
318
+ msgid ":pr:`2580`: Fixed :func:`.find_intersection` in :mod:`.space_ops`"
319
+ msgstr ""
320
+
321
+ #: ../../source/changelog/0.15.0-changelog.rst:142
322
+ msgid ":pr:`2576`: Fixed a bug with animation of removal of edges from a :class:`.Graph`"
323
+ msgstr ""
324
+
325
+ #: ../../source/changelog/0.15.0-changelog.rst:145
326
+ msgid ":pr:`2556`: Fixed showing highlighted cells when creating :class:`.Table`"
327
+ msgstr ""
328
+
329
+ #: ../../source/changelog/0.15.0-changelog.rst:148
330
+ msgid ":pr:`2559`: Fix setting line numbers in :class:`.Text` when using ManimPango settings"
331
+ msgstr ""
332
+
333
+ #: ../../source/changelog/0.15.0-changelog.rst:151
334
+ msgid ":pr:`2557`: Fixed logger bug in :meth:`.Camera.make_background_from_func`"
335
+ msgstr ""
336
+
337
+ #: ../../source/changelog/0.15.0-changelog.rst:154
338
+ msgid ":pr:`2548`: Fixed :class:`.Axes` plotting bug with logarithmic x-axis"
339
+ msgstr ""
340
+
341
+ #: ../../source/changelog/0.15.0-changelog.rst:157
342
+ msgid ":pr:`1547`: Fixed certain unicode characters in users' paths causing issues on Windows"
343
+ msgstr ""
344
+
345
+ #: ../../source/changelog/0.15.0-changelog.rst:160
346
+ msgid ":pr:`2526`: Fixed segfault when using ``--enable_gui``"
347
+ msgstr ""
348
+
349
+ #: ../../source/changelog/0.15.0-changelog.rst:163
350
+ msgid ":pr:`2538`: Fixed flickering OpenGL preview when using ``frozen_frame``"
351
+ msgstr ""
352
+
353
+ #: ../../source/changelog/0.15.0-changelog.rst:166
354
+ msgid ":pr:`2528`: Fixed custom naming of gifs and added some tests"
355
+ msgstr ""
356
+
357
+ #: ../../source/changelog/0.15.0-changelog.rst:169
358
+ msgid ":pr:`2487`: Fixed :meth:`.ThreeDCamera.remove_fixed_orientation_mobjects`"
359
+ msgstr ""
360
+
361
+ #: ../../source/changelog/0.15.0-changelog.rst:172
362
+ msgid ":pr:`2530`: Use single source of truth for default text values"
363
+ msgstr ""
364
+
365
+ #: ../../source/changelog/0.15.0-changelog.rst:175
366
+ msgid ":pr:`2494`: Fixed an issue related to previewing gifs"
367
+ msgstr ""
368
+
369
+ #: ../../source/changelog/0.15.0-changelog.rst:178
370
+ msgid ":pr:`2490`: Fixed order of transformation application in :class:`~.SVGMobject`"
371
+ msgstr ""
372
+
373
+ #: ../../source/changelog/0.15.0-changelog.rst:181
374
+ msgid ":pr:`2357`: Fixed ``screeninfo.get_monitors`` for MacOS"
375
+ msgstr ""
376
+
377
+ #: ../../source/changelog/0.15.0-changelog.rst:184
378
+ msgid ":pr:`2444`: Fixed :meth:`.VectorScene.add_axes`"
379
+ msgstr ""
380
+
381
+ #: ../../source/changelog/0.15.0-changelog.rst:188
382
+ msgid "Documentation-related changes"
383
+ msgstr ""
384
+
385
+ #: ../../source/changelog/0.15.0-changelog.rst:190
386
+ msgid ":pr:`2560`: Refactored more docstrings in :mod:`.geometry`"
387
+ msgstr ""
388
+
389
+ #: ../../source/changelog/0.15.0-changelog.rst:193
390
+ msgid ":pr:`2571`: Refactored docstrings in :mod:`.graphing`"
391
+ msgstr ""
392
+
393
+ #: ../../source/changelog/0.15.0-changelog.rst:196
394
+ msgid ":pr:`2569`: Refactored docstrings in :mod:`.geometry`"
395
+ msgstr ""
396
+
397
+ #: ../../source/changelog/0.15.0-changelog.rst:198
398
+ msgid ":pr:`2549`: Added a page for internals which links to our GitHub wiki"
399
+ msgstr ""
400
+
401
+ #: ../../source/changelog/0.15.0-changelog.rst:201
402
+ msgid ":pr:`2458`: Improved documentation for :class:`.Rotate`"
403
+ msgstr ""
404
+
405
+ #: ../../source/changelog/0.15.0-changelog.rst:204
406
+ msgid ":pr:`2459`: Added examples to some transform animations"
407
+ msgstr ""
408
+
409
+ #: ../../source/changelog/0.15.0-changelog.rst:207
410
+ msgid ":pr:`2517`: Added guide on profiling and improving performance"
411
+ msgstr ""
412
+
413
+ #: ../../source/changelog/0.15.0-changelog.rst:210
414
+ msgid ":pr:`2518`: Added imports to examples for ``deprecation`` decorator"
415
+ msgstr ""
416
+
417
+ #: ../../source/changelog/0.15.0-changelog.rst:213
418
+ msgid ":pr:`2499`: Improved help text for ``--write_to_movie``"
419
+ msgstr ""
420
+
421
+ #: ../../source/changelog/0.15.0-changelog.rst:216
422
+ msgid ":pr:`2465`: Added documentation for :func:`.index_labels`"
423
+ msgstr ""
424
+
425
+ #: ../../source/changelog/0.15.0-changelog.rst:219
426
+ msgid ":pr:`2495`: Updated minimal LaTeX installation instructions"
427
+ msgstr ""
428
+
429
+ #: ../../source/changelog/0.15.0-changelog.rst:222
430
+ msgid ":pr:`2500`: Added note about contributions during refactor period"
431
+ msgstr ""
432
+
433
+ #: ../../source/changelog/0.15.0-changelog.rst:225
434
+ msgid ":pr:`2431`: Changed example in :meth:`.Surface.set_fill_by_value`"
435
+ msgstr ""
436
+
437
+ #: ../../source/changelog/0.15.0-changelog.rst:228
438
+ msgid ":pr:`2485`: Fixed some typos in documentation"
439
+ msgstr ""
440
+
441
+ #: ../../source/changelog/0.15.0-changelog.rst:231
442
+ msgid ":pr:`2493`: Fixed typo in documentation for parameters of :class:`.Square`"
443
+ msgstr ""
444
+
445
+ #: ../../source/changelog/0.15.0-changelog.rst:234
446
+ msgid ":pr:`2482`: Updated Python version requirement in installation guide"
447
+ msgstr ""
448
+
449
+ #: ../../source/changelog/0.15.0-changelog.rst:237
450
+ msgid ":pr:`2438`: Removed unnecessary rotation from example"
451
+ msgstr ""
452
+
453
+ #: ../../source/changelog/0.15.0-changelog.rst:240
454
+ msgid ":pr:`2468`: Hid more private methods from the docs"
455
+ msgstr ""
456
+
457
+ #: ../../source/changelog/0.15.0-changelog.rst:243
458
+ msgid ":pr:`2466`: Fixed a typo in the documentation for plugins"
459
+ msgstr ""
460
+
461
+ #: ../../source/changelog/0.15.0-changelog.rst:246
462
+ msgid ":pr:`2448`: Improvements to the ``.pot`` files cleaning system"
463
+ msgstr ""
464
+
465
+ #: ../../source/changelog/0.15.0-changelog.rst:249
466
+ msgid ":pr:`2436`: Fixed typo and improved example in building blocks tutorial"
467
+ msgstr ""
468
+
469
+ #: ../../source/changelog/0.15.0-changelog.rst:253
470
+ msgid "Changes to our development infrastructure"
471
+ msgstr ""
472
+
473
+ #: ../../source/changelog/0.15.0-changelog.rst:255
474
+ msgid ":pr:`2554`: Removed ``Remove-Item`` calls for MSYS2 Python"
475
+ msgstr ""
476
+
477
+ #: ../../source/changelog/0.15.0-changelog.rst:258
478
+ msgid ":pr:`2531`: Added a GitHub Action for automatic validation of citation metadata"
479
+ msgstr ""
480
+
481
+ #: ../../source/changelog/0.15.0-changelog.rst:261
482
+ msgid ":pr:`2536`: Upgraded version of setup-ffmpeg CI action"
483
+ msgstr ""
484
+
485
+ #: ../../source/changelog/0.15.0-changelog.rst:264
486
+ msgid ":pr:`2484`: Updated tinytex download URL"
487
+ msgstr ""
488
+
489
+ #: ../../source/changelog/0.15.0-changelog.rst:268
490
+ msgid "Code quality improvements and similar refactors"
491
+ msgstr ""
492
+
493
+ #: ../../source/changelog/0.15.0-changelog.rst:270
494
+ msgid ":pr:`2573`: Moved :mod:`.value_tracker` back inside :mod:`.mobject`"
495
+ msgstr ""
496
+
497
+ #: ../../source/changelog/0.15.0-changelog.rst:273
498
+ msgid ":pr:`2566`: Removed unused livestream-related imports and functions from :mod:`.scene_file_writer`"
499
+ msgstr ""
500
+
501
+ #: ../../source/changelog/0.15.0-changelog.rst:276
502
+ msgid ":pr:`2524`: Reworked :mod:`.space_ops`"
503
+ msgstr ""
504
+
505
+ #: ../../source/changelog/0.15.0-changelog.rst:279
506
+ msgid ":pr:`2519`: Removed outdated comment"
507
+ msgstr ""
508
+
509
+ #: ../../source/changelog/0.15.0-changelog.rst:282
510
+ msgid ":pr:`2503`: Removed unused imports"
511
+ msgstr ""
512
+
513
+ #: ../../source/changelog/0.15.0-changelog.rst:285
514
+ msgid ":pr:`2475`: Removed setuptools dependency"
515
+ msgstr ""
516
+
517
+ #: ../../source/changelog/0.15.0-changelog.rst:288
518
+ msgid ":pr:`2472`: Removed unnecessary comment in :mod:`.simple_functions`"
519
+ msgstr ""
520
+
521
+ #: ../../source/changelog/0.15.0-changelog.rst:291
522
+ msgid ":pr:`2429`: Upgraded to future-style type annotations"
523
+ msgstr ""
524
+
525
+ #: ../../source/changelog/0.15.0-changelog.rst:294
526
+ msgid ":pr:`2464`: Bump pillow from 8.4.0 to 9.0.0"
527
+ msgstr ""
528
+
529
+ #: ../../source/changelog/0.15.0-changelog.rst:297
530
+ msgid ":pr:`2376`: Updated dependencies for Python 3.10"
531
+ msgstr ""
532
+
533
+ #: ../../source/changelog/0.15.0-changelog.rst:305
534
+ msgid ":pr:`2437`: Cleaned up :mod:`.simple_functions`"
535
+ msgstr ""
536
+
537
+ #: ../../source/changelog/0.15.0-changelog.rst:301
538
+ msgid "Removed ``fdiv`` as in all cases where it was used, it was just doing the same thing as numpy array division."
539
+ msgstr ""
540
+
541
+ #: ../../source/changelog/0.15.0-changelog.rst:302
542
+ msgid "Replaced old implementation of the choose function with scipy's implementation"
543
+ msgstr ""
544
+
545
+ #: ../../source/changelog/0.15.0-changelog.rst:303
546
+ msgid "Use ``lru_cache`` (least recently used cache) for caching the choose function. Since it's only used for beziers, only 2 choose k and 3 choose k will be used, hence a size of 10 should be enough."
547
+ msgstr ""
548
+
549
+ #: ../../source/changelog/0.15.0-changelog.rst:304
550
+ msgid "Removed ``clip_in_place`` in favor of ``np.clip``"
551
+ msgstr ""
552
+
553
+ #: ../../source/changelog/0.15.0-changelog.rst:305
554
+ msgid "Removed one use of ``clip_in_place`` that wasn't actually doing anything"
555
+ msgstr ""
556
+
557
+ #: ../../source/changelog/0.15.0-changelog.rst:307
558
+ msgid ":pr:`2439`: Removed twitter template from scripts"
559
+ msgstr ""
560
+
561
+ #: ../../source/changelog/0.15.0-changelog.rst:311
562
+ msgid "New releases"
563
+ msgstr ""
564
+
565
+
data/docs/i18n/gettext/changelog/0.15.1-changelog.pot ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.15.1-changelog.rst:3
10
+ msgid "v0.15.1"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.15.1-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.15.1-changelog.rst:5
18
+ msgid "March 08, 2022"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.15.1-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.15.1-changelog.rst:10
26
+ msgid "A total of 9 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.15.1-changelog.rst:14
30
+ #: ../../source/changelog/0.15.1-changelog.rst:24
31
+ msgid "Benjamin Hackl"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.15.1-changelog.rst:15
35
+ msgid "Nicolai Weitkemper"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.15.1-changelog.rst:16
39
+ msgid "Yuchen +"
40
+ msgstr ""
41
+
42
+ #: ../../source/changelog/0.15.1-changelog.rst:17
43
+ #: ../../source/changelog/0.15.1-changelog.rst:28
44
+ msgid "ad_chaos"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.15.1-changelog.rst:20
48
+ msgid "The patches included in this release have been reviewed by the following contributors."
49
+ msgstr ""
50
+
51
+ #: ../../source/changelog/0.15.1-changelog.rst:23
52
+ msgid "Alex Lembcke"
53
+ msgstr ""
54
+
55
+ #: ../../source/changelog/0.15.1-changelog.rst:25
56
+ msgid "Darylgolden"
57
+ msgstr ""
58
+
59
+ #: ../../source/changelog/0.15.1-changelog.rst:26
60
+ msgid "Naveen M K"
61
+ msgstr ""
62
+
63
+ #: ../../source/changelog/0.15.1-changelog.rst:27
64
+ msgid "Raghav Goel"
65
+ msgstr ""
66
+
67
+ #: ../../source/changelog/0.15.1-changelog.rst:29
68
+ msgid "icedcoffeeee"
69
+ msgstr ""
70
+
71
+ #: ../../source/changelog/0.15.1-changelog.rst:32
72
+ msgid "Pull requests merged"
73
+ msgstr ""
74
+
75
+ #: ../../source/changelog/0.15.1-changelog.rst:34
76
+ msgid "A total of 9 pull requests were merged for this release."
77
+ msgstr ""
78
+
79
+ #: ../../source/changelog/0.15.1-changelog.rst:37
80
+ msgid "Enhancements"
81
+ msgstr ""
82
+
83
+ #: ../../source/changelog/0.15.1-changelog.rst:39
84
+ msgid ":pr:`2602`: Support groups in :class:`.TransformMatchingTex`"
85
+ msgstr ""
86
+
87
+ #: ../../source/changelog/0.15.1-changelog.rst:43
88
+ msgid "Fixed bugs"
89
+ msgstr ""
90
+
91
+ #: ../../source/changelog/0.15.1-changelog.rst:45
92
+ msgid ":pr:`2594`: Fixed render flow issues with introducer animations"
93
+ msgstr ""
94
+
95
+ #: ../../source/changelog/0.15.1-changelog.rst:48
96
+ msgid ":pr:`2584`: Fixed bug with invalid color type ``None``"
97
+ msgstr ""
98
+
99
+ #: ../../source/changelog/0.15.1-changelog.rst:51
100
+ msgid ":pr:`2587`: Fixed bug with rendering Tex string that contain ``%``"
101
+ msgstr ""
102
+
103
+ #: ../../source/changelog/0.15.1-changelog.rst:54
104
+ msgid ":pr:`2593`: Fixed bug with displaying images in Jupyter Notebooks when ``config.media_embed`` is set to ``False``"
105
+ msgstr ""
106
+
107
+ #: ../../source/changelog/0.15.1-changelog.rst:58
108
+ msgid "Documentation-related changes"
109
+ msgstr ""
110
+
111
+ #: ../../source/changelog/0.15.1-changelog.rst:60
112
+ msgid ":pr:`2570`: Refactored docstrings in :mod:`.coordinate_systems`"
113
+ msgstr ""
114
+
115
+ #: ../../source/changelog/0.15.1-changelog.rst:63
116
+ msgid ":pr:`2603`: Reduced the number of warnings during documentation build"
117
+ msgstr ""
118
+
119
+ #: ../../source/changelog/0.15.1-changelog.rst:67
120
+ msgid "Code quality improvements and similar refactors"
121
+ msgstr ""
122
+
123
+ #: ../../source/changelog/0.15.1-changelog.rst:69
124
+ msgid ":pr:`2578`: Fixed incorrect type hint for color property of :class:`.Text`"
125
+ msgstr ""
126
+
127
+ #: ../../source/changelog/0.15.1-changelog.rst:73
128
+ msgid "New releases"
129
+ msgstr ""
130
+
131
+
data/docs/i18n/gettext/changelog/0.15.2-changelog.pot ADDED
@@ -0,0 +1,426 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.15.2-changelog.rst:3
10
+ msgid "v0.15.2"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.15.2-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.15.2-changelog.rst:5
18
+ msgid "April 25, 2022"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.15.2-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.15.2-changelog.rst:10
26
+ msgid "A total of 33 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.15.2-changelog.rst:14
30
+ msgid "Bailey Powers +"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.15.2-changelog.rst:15
34
+ #: ../../source/changelog/0.15.2-changelog.rst:44
35
+ msgid "Benjamin Hackl"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.15.2-changelog.rst:16
39
+ msgid "Dan Walsh +"
40
+ msgstr ""
41
+
42
+ #: ../../source/changelog/0.15.2-changelog.rst:17
43
+ msgid "Darigov Research"
44
+ msgstr ""
45
+
46
+ #: ../../source/changelog/0.15.2-changelog.rst:18
47
+ #: ../../source/changelog/0.15.2-changelog.rst:46
48
+ msgid "Darylgolden"
49
+ msgstr ""
50
+
51
+ #: ../../source/changelog/0.15.2-changelog.rst:19
52
+ msgid "David Millard +"
53
+ msgstr ""
54
+
55
+ #: ../../source/changelog/0.15.2-changelog.rst:20
56
+ msgid "Hamidreza Hashemi +"
57
+ msgstr ""
58
+
59
+ #: ../../source/changelog/0.15.2-changelog.rst:21
60
+ #: ../../source/changelog/0.15.2-changelog.rst:49
61
+ msgid "Jan-Hendrik Müller"
62
+ msgstr ""
63
+
64
+ #: ../../source/changelog/0.15.2-changelog.rst:22
65
+ #: ../../source/changelog/0.15.2-changelog.rst:50
66
+ msgid "Jason Villanueva"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.15.2-changelog.rst:23
70
+ msgid "Jonathan Alpert +"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.15.2-changelog.rst:24
74
+ msgid "Joy Bhalla"
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.15.2-changelog.rst:25
78
+ msgid "Kian Cross +"
79
+ msgstr ""
80
+
81
+ #: ../../source/changelog/0.15.2-changelog.rst:26
82
+ msgid "Luca +"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.15.2-changelog.rst:27
86
+ msgid "Mohsin Shaikh +"
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.15.2-changelog.rst:28
90
+ #: ../../source/changelog/0.15.2-changelog.rst:53
91
+ msgid "Naveen M K"
92
+ msgstr ""
93
+
94
+ #: ../../source/changelog/0.15.2-changelog.rst:29
95
+ msgid "Prismo +"
96
+ msgstr ""
97
+
98
+ #: ../../source/changelog/0.15.2-changelog.rst:30
99
+ #: ../../source/changelog/0.15.2-changelog.rst:55
100
+ msgid "Ryan McCauley"
101
+ msgstr ""
102
+
103
+ #: ../../source/changelog/0.15.2-changelog.rst:31
104
+ msgid "WillSoltas +"
105
+ msgstr ""
106
+
107
+ #: ../../source/changelog/0.15.2-changelog.rst:32
108
+ #: ../../source/changelog/0.15.2-changelog.rst:56
109
+ msgid "ad_chaos"
110
+ msgstr ""
111
+
112
+ #: ../../source/changelog/0.15.2-changelog.rst:33
113
+ msgid "darkways +"
114
+ msgstr ""
115
+
116
+ #: ../../source/changelog/0.15.2-changelog.rst:34
117
+ msgid "dawn*squirryl +"
118
+ msgstr ""
119
+
120
+ #: ../../source/changelog/0.15.2-changelog.rst:35
121
+ #: ../../source/changelog/0.15.2-changelog.rst:59
122
+ msgid "icedcoffeeee"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.15.2-changelog.rst:36
126
+ #: ../../source/changelog/0.15.2-changelog.rst:60
127
+ msgid "peaceheis"
128
+ msgstr ""
129
+
130
+ #: ../../source/changelog/0.15.2-changelog.rst:37
131
+ msgid "sparshg"
132
+ msgstr ""
133
+
134
+ #: ../../source/changelog/0.15.2-changelog.rst:38
135
+ msgid "trickypr +"
136
+ msgstr ""
137
+
138
+ #: ../../source/changelog/0.15.2-changelog.rst:41
139
+ msgid "The patches included in this release have been reviewed by the following contributors."
140
+ msgstr ""
141
+
142
+ #: ../../source/changelog/0.15.2-changelog.rst:45
143
+ msgid "Dan Walsh"
144
+ msgstr ""
145
+
146
+ #: ../../source/changelog/0.15.2-changelog.rst:47
147
+ msgid "GameDungeon"
148
+ msgstr ""
149
+
150
+ #: ../../source/changelog/0.15.2-changelog.rst:48
151
+ msgid "Hugues Devimeux"
152
+ msgstr ""
153
+
154
+ #: ../../source/changelog/0.15.2-changelog.rst:51
155
+ msgid "Jonathan Alpert"
156
+ msgstr ""
157
+
158
+ #: ../../source/changelog/0.15.2-changelog.rst:52
159
+ msgid "Luca"
160
+ msgstr ""
161
+
162
+ #: ../../source/changelog/0.15.2-changelog.rst:54
163
+ msgid "Prismo"
164
+ msgstr ""
165
+
166
+ #: ../../source/changelog/0.15.2-changelog.rst:57
167
+ msgid "darkways"
168
+ msgstr ""
169
+
170
+ #: ../../source/changelog/0.15.2-changelog.rst:58
171
+ msgid "hickmott99"
172
+ msgstr ""
173
+
174
+ #: ../../source/changelog/0.15.2-changelog.rst:63
175
+ msgid "Pull requests merged"
176
+ msgstr ""
177
+
178
+ #: ../../source/changelog/0.15.2-changelog.rst:65
179
+ msgid "A total of 39 pull requests were merged for this release."
180
+ msgstr ""
181
+
182
+ #: ../../source/changelog/0.15.2-changelog.rst:68
183
+ msgid "New features"
184
+ msgstr ""
185
+
186
+ #: ../../source/changelog/0.15.2-changelog.rst:74
187
+ msgid ":pr:`1975`: Improved CLI help page styling"
188
+ msgstr ""
189
+
190
+ #: ../../source/changelog/0.15.2-changelog.rst:71
191
+ msgid "Updates dependencies on Click and Cloup libraries for CLI help page styling."
192
+ msgstr ""
193
+
194
+ #: ../../source/changelog/0.15.2-changelog.rst:72
195
+ msgid "Removed the dependency on click-default-group."
196
+ msgstr ""
197
+
198
+ #: ../../source/changelog/0.15.2-changelog.rst:73
199
+ msgid "Added ``no_args_is_help`` parameter for ``manim render`` to allow easy access to help page."
200
+ msgstr ""
201
+
202
+ #: ../../source/changelog/0.15.2-changelog.rst:74
203
+ msgid "Added note to ``manim`` help page epilog on how to access other command help pages."
204
+ msgstr ""
205
+
206
+ #: ../../source/changelog/0.15.2-changelog.rst:77
207
+ msgid ":pr:`2404`: Add :class:`.SpiralIn` Animation"
208
+ msgstr ""
209
+
210
+ #: ../../source/changelog/0.15.2-changelog.rst:77
211
+ msgid "Make :class:`.ManimBanner` to use :class:`.SpiralIn`."
212
+ msgstr ""
213
+
214
+ #: ../../source/changelog/0.15.2-changelog.rst:79
215
+ msgid ":pr:`2534`: Implement :class:`~.OpenGLImageMobject`"
216
+ msgstr ""
217
+
218
+ #: ../../source/changelog/0.15.2-changelog.rst:82
219
+ msgid ":pr:`2684`: Created a more accessible way to create Angles with line.py angle function - :meth:`.Angle.from_three_points`"
220
+ msgstr ""
221
+
222
+ #: ../../source/changelog/0.15.2-changelog.rst:86
223
+ msgid "Enhancements"
224
+ msgstr ""
225
+
226
+ #: ../../source/changelog/0.15.2-changelog.rst:88
227
+ msgid ":pr:`2062`: Reuse shader wrappers and shader data"
228
+ msgstr ""
229
+
230
+ #: ../../source/changelog/0.15.2-changelog.rst:92
231
+ msgid ":pr:`2642`: Migrated ``file_ops.py`` and ``scene_file_writer.py`` from os.path to Pathlib"
232
+ msgstr ""
233
+
234
+ #: ../../source/changelog/0.15.2-changelog.rst:92
235
+ msgid "In ``file_ops.py`` and ``scene_file_writer.py``: Uses of str type file names have been mostly (see further information) converted to pathlib's Path objects. Uses of ``os.path`` methods have been converted to equivalent pathlib methods."
236
+ msgstr ""
237
+
238
+ #: ../../source/changelog/0.15.2-changelog.rst:94
239
+ msgid ":pr:`2655`: Fix :func:`.assert_is_mobject_method` when using OpenGL"
240
+ msgstr ""
241
+
242
+ #: ../../source/changelog/0.15.2-changelog.rst:97
243
+ msgid ":pr:`2665`: Improved handling of attributes when using the ``.animate`` syntax"
244
+ msgstr ""
245
+
246
+ #: ../../source/changelog/0.15.2-changelog.rst:102
247
+ msgid ":pr:`2674`: Document and type ``simple_functions.py``"
248
+ msgstr ""
249
+
250
+ #: ../../source/changelog/0.15.2-changelog.rst:101
251
+ msgid "Add documentation for ``simple_functions.py``."
252
+ msgstr ""
253
+
254
+ #: ../../source/changelog/0.15.2-changelog.rst:102
255
+ msgid "Small additions with some extra clarity for these functions."
256
+ msgstr ""
257
+
258
+ #: ../../source/changelog/0.15.2-changelog.rst:105
259
+ msgid ":pr:`2693`: Allow using :meth:`.MovingCamera.auto_zoom` without animation"
260
+ msgstr ""
261
+
262
+ #: ../../source/changelog/0.15.2-changelog.rst:105
263
+ msgid "Allows auto zooming camera without having to play an animation by passing an ``animation=False`` argument"
264
+ msgstr ""
265
+
266
+ #: ../../source/changelog/0.15.2-changelog.rst:108
267
+ msgid "Fixed bugs"
268
+ msgstr ""
269
+
270
+ #: ../../source/changelog/0.15.2-changelog.rst:110
271
+ msgid ":pr:`2546`: Fixed a file logging bug and some maintenance"
272
+ msgstr ""
273
+
274
+ #: ../../source/changelog/0.15.2-changelog.rst:116
275
+ msgid ":pr:`2597`: Fix Bug in :class:`.Uncreate` with ``rate_func`` via introducing new parameter ``reversed`` to :class:`.Animation`"
276
+ msgstr ""
277
+
278
+ #: ../../source/changelog/0.15.2-changelog.rst:114
279
+ msgid "Refractor the :class:`.Uncreate`. The new implementation uses a flag member ``reversed``. Set it to ``True`` and its superclass handles the reverse."
280
+ msgstr ""
281
+
282
+ #: ../../source/changelog/0.15.2-changelog.rst:115
283
+ msgid "Introduce a bool parameter ``reversed`` to :class:`.Animation`. It decides whether the animation needs to be played backwards. Default to be False."
284
+ msgstr ""
285
+
286
+ #: ../../source/changelog/0.15.2-changelog.rst:116
287
+ msgid "Add conditional branches in :meth:`.Animation.get_sub_alpha`. If the parameter ``reversed`` is True, it would set ``rate_func(t)`` to ``rate_func(1 - t)``."
288
+ msgstr ""
289
+
290
+ #: ../../source/changelog/0.15.2-changelog.rst:118
291
+ msgid ":pr:`2613`: Fixed bug in :meth:`.Circle.point_at_angle` when the angle is not in the interval :math:`[0, 2\\pi]`"
292
+ msgstr ""
293
+
294
+ #: ../../source/changelog/0.15.2-changelog.rst:121
295
+ msgid ":pr:`2634`: Fix background lines drawn twice in :class:`.NumberPlane`"
296
+ msgstr ""
297
+
298
+ #: ../../source/changelog/0.15.2-changelog.rst:124
299
+ msgid ":pr:`2648`: Handle user-defined centers for Wiggle animation"
300
+ msgstr ""
301
+
302
+ #: ../../source/changelog/0.15.2-changelog.rst:128
303
+ msgid ":pr:`2658`: Fix arguments of overridden ``set_style`` for :class:`.BackgroundRectangle`"
304
+ msgstr ""
305
+
306
+ #: ../../source/changelog/0.15.2-changelog.rst:128
307
+ msgid "Using :class:`.Write` animation on a :class:`.Text` object with ``.add_background_rectangle()`` applied no longer generates a ``TypeError``."
308
+ msgstr ""
309
+
310
+ #: ../../source/changelog/0.15.2-changelog.rst:130
311
+ msgid ":pr:`2668`: (Re)set background color of :class:`.OpenGLRenderer` when initializing scene"
312
+ msgstr ""
313
+
314
+ #: ../../source/changelog/0.15.2-changelog.rst:133
315
+ msgid ":pr:`2676`: Fixed propagation of custom attributes in animations for the OpenGL renderer"
316
+ msgstr ""
317
+
318
+ #: ../../source/changelog/0.15.2-changelog.rst:136
319
+ msgid ":pr:`2688`: Fixed two minor issues of :class:`.SpiralIn` and :class:`.ManimBanner`"
320
+ msgstr ""
321
+
322
+ #: ../../source/changelog/0.15.2-changelog.rst:140
323
+ msgid "Documentation-related changes"
324
+ msgstr ""
325
+
326
+ #: ../../source/changelog/0.15.2-changelog.rst:142
327
+ msgid ":pr:`2609`: Copyedit troubleshooting.rst"
328
+ msgstr ""
329
+
330
+ #: ../../source/changelog/0.15.2-changelog.rst:145
331
+ msgid ":pr:`2610`: Add example PolygonOnAxes"
332
+ msgstr ""
333
+
334
+ #: ../../source/changelog/0.15.2-changelog.rst:148
335
+ msgid ":pr:`2617`: Re-added :mod:`.value_tracker` documentation"
336
+ msgstr ""
337
+
338
+ #: ../../source/changelog/0.15.2-changelog.rst:151
339
+ msgid ":pr:`2619`: Improve Example for arrange_in_grid"
340
+ msgstr ""
341
+
342
+ #: ../../source/changelog/0.15.2-changelog.rst:154
343
+ msgid ":pr:`2620`: Fixed typo in :meth:`.Animation.is_introducer`"
344
+ msgstr ""
345
+
346
+ #: ../../source/changelog/0.15.2-changelog.rst:158
347
+ msgid ":pr:`2640`: Copyedited Documentation"
348
+ msgstr ""
349
+
350
+ #: ../../source/changelog/0.15.2-changelog.rst:158
351
+ msgid "Reviewed ``tutorials/configurations.rst``. Edited simple mistakes such as Manim not being capitalized and commas."
352
+ msgstr ""
353
+
354
+ #: ../../source/changelog/0.15.2-changelog.rst:160
355
+ msgid ":pr:`2649`: Document and type utils/iterables.py"
356
+ msgstr ""
357
+
358
+ #: ../../source/changelog/0.15.2-changelog.rst:163
359
+ msgid ":pr:`2651`: Update copyright year in documentation to 2020-2022"
360
+ msgstr ""
361
+
362
+ #: ../../source/changelog/0.15.2-changelog.rst:165
363
+ msgid ":pr:`2663`: Added documentation for scene updater functions"
364
+ msgstr ""
365
+
366
+ #: ../../source/changelog/0.15.2-changelog.rst:168
367
+ msgid ":pr:`2686`: Add instructions to install extra dependencies with poetry"
368
+ msgstr ""
369
+
370
+ #: ../../source/changelog/0.15.2-changelog.rst:172
371
+ msgid "Changes to our development infrastructure"
372
+ msgstr ""
373
+
374
+ #: ../../source/changelog/0.15.2-changelog.rst:174
375
+ msgid ":pr:`2561`: Run tests on Linux-aarch64"
376
+ msgstr ""
377
+
378
+ #: ../../source/changelog/0.15.2-changelog.rst:177
379
+ msgid ":pr:`2656`: Fixed incompatibility with black version"
380
+ msgstr ""
381
+
382
+ #: ../../source/changelog/0.15.2-changelog.rst:181
383
+ msgid "Code quality improvements and similar refactors"
384
+ msgstr ""
385
+
386
+ #: ../../source/changelog/0.15.2-changelog.rst:184
387
+ msgid ":pr:`2630`: Remove WebGL renderer"
388
+ msgstr ""
389
+
390
+ #: ../../source/changelog/0.15.2-changelog.rst:184
391
+ msgid "The WebGL renderer is broken and unmaintained. The support for it in Manim is removed."
392
+ msgstr ""
393
+
394
+ #: ../../source/changelog/0.15.2-changelog.rst:186
395
+ msgid ":pr:`2652`: Update ``cloup`` version to 0.13.0 from 0.7.0"
396
+ msgstr ""
397
+
398
+ #: ../../source/changelog/0.15.2-changelog.rst:189
399
+ msgid ":pr:`2678`: Require ``backports-cached-property`` only for Python < 3.8"
400
+ msgstr ""
401
+
402
+ #: ../../source/changelog/0.15.2-changelog.rst:193
403
+ msgid ":pr:`2685`: Migrate from ``os.path`` to ``pathlib`` in testing scripts"
404
+ msgstr ""
405
+
406
+ #: ../../source/changelog/0.15.2-changelog.rst:193
407
+ msgid "This pull request changes a number of instances of ``os.path`` to Pathlib objects and functions. In addition, this PR modifies the SVGMobject constructor to accept both a Pathlib object or a string variable pathname its constructor."
408
+ msgstr ""
409
+
410
+ #: ../../source/changelog/0.15.2-changelog.rst:195
411
+ msgid ":pr:`2691`: Removed :class:`CameraFrame`"
412
+ msgstr ""
413
+
414
+ #: ../../source/changelog/0.15.2-changelog.rst:198
415
+ msgid ":pr:`2696`: Made changelog generation run in parallel plus further improvements to ``scripts/dev_changelog.py``"
416
+ msgstr ""
417
+
418
+ #: ../../source/changelog/0.15.2-changelog.rst:201
419
+ msgid ":pr:`2697`: Sort PRs by number in changelog sections before writing"
420
+ msgstr ""
421
+
422
+ #: ../../source/changelog/0.15.2-changelog.rst:205
423
+ msgid "New releases"
424
+ msgstr ""
425
+
426
+
data/docs/i18n/gettext/changelog/0.16.0-changelog.pot ADDED
@@ -0,0 +1,501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.16.0-changelog.rst:3
10
+ msgid "v0.16.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.16.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.16.0-changelog.rst:5
18
+ msgid "July 13, 2022"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.16.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.16.0-changelog.rst:10
26
+ msgid "A total of 44 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.16.0-changelog.rst:14
30
+ #: ../../source/changelog/0.16.0-changelog.rst:51
31
+ msgid "Alex Lembcke"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.16.0-changelog.rst:15
35
+ msgid "Baroudi Aymen +"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.16.0-changelog.rst:16
39
+ #: ../../source/changelog/0.16.0-changelog.rst:52
40
+ msgid "Benjamin Hackl"
41
+ msgstr ""
42
+
43
+ #: ../../source/changelog/0.16.0-changelog.rst:17
44
+ msgid "Charalampos Georgiou +"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.16.0-changelog.rst:18
48
+ msgid "Cindy Park +"
49
+ msgstr ""
50
+
51
+ #: ../../source/changelog/0.16.0-changelog.rst:19
52
+ msgid "Ejar +"
53
+ msgstr ""
54
+
55
+ #: ../../source/changelog/0.16.0-changelog.rst:20
56
+ msgid "Francesco Frassinelli +"
57
+ msgstr ""
58
+
59
+ #: ../../source/changelog/0.16.0-changelog.rst:21
60
+ msgid "Francisco Manríquez Novoa +"
61
+ msgstr ""
62
+
63
+ #: ../../source/changelog/0.16.0-changelog.rst:22
64
+ msgid "Jacob Evan Shreve +"
65
+ msgstr ""
66
+
67
+ #: ../../source/changelog/0.16.0-changelog.rst:23
68
+ msgid "Jaime Santos +"
69
+ msgstr ""
70
+
71
+ #: ../../source/changelog/0.16.0-changelog.rst:24
72
+ #: ../../source/changelog/0.16.0-changelog.rst:58
73
+ msgid "Jonathan Alpert"
74
+ msgstr ""
75
+
76
+ #: ../../source/changelog/0.16.0-changelog.rst:25
77
+ msgid "Joshua Mankelow +"
78
+ msgstr ""
79
+
80
+ #: ../../source/changelog/0.16.0-changelog.rst:26
81
+ msgid "Kevin Lubick +"
82
+ msgstr ""
83
+
84
+ #: ../../source/changelog/0.16.0-changelog.rst:27
85
+ #: ../../source/changelog/0.16.0-changelog.rst:60
86
+ msgid "Laith Bahodi"
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.16.0-changelog.rst:28
90
+ msgid "Lingren Kong +"
91
+ msgstr ""
92
+
93
+ #: ../../source/changelog/0.16.0-changelog.rst:29
94
+ msgid "Logen +"
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.16.0-changelog.rst:30
98
+ #: ../../source/changelog/0.16.0-changelog.rst:61
99
+ msgid "Naveen M K"
100
+ msgstr ""
101
+
102
+ #: ../../source/changelog/0.16.0-changelog.rst:31
103
+ msgid "Noam Zaks"
104
+ msgstr ""
105
+
106
+ #: ../../source/changelog/0.16.0-changelog.rst:32
107
+ msgid "Pedro Lamkowski +"
108
+ msgstr ""
109
+
110
+ #: ../../source/changelog/0.16.0-changelog.rst:33
111
+ #: ../../source/changelog/0.16.0-changelog.rst:64
112
+ msgid "Raghav Goel"
113
+ msgstr ""
114
+
115
+ #: ../../source/changelog/0.16.0-changelog.rst:34
116
+ msgid "Simeon Widdis"
117
+ msgstr ""
118
+
119
+ #: ../../source/changelog/0.16.0-changelog.rst:35
120
+ #: ../../source/changelog/0.16.0-changelog.rst:66
121
+ msgid "Sparsh Goenka"
122
+ msgstr ""
123
+
124
+ #: ../../source/changelog/0.16.0-changelog.rst:36
125
+ msgid "TornaxO7 +"
126
+ msgstr ""
127
+
128
+ #: ../../source/changelog/0.16.0-changelog.rst:37
129
+ msgid "Tristan Schulz +"
130
+ msgstr ""
131
+
132
+ #: ../../source/changelog/0.16.0-changelog.rst:38
133
+ msgid "WillSoltas"
134
+ msgstr ""
135
+
136
+ #: ../../source/changelog/0.16.0-changelog.rst:39
137
+ #: ../../source/changelog/0.16.0-changelog.rst:69
138
+ msgid "ad_chaos"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.16.0-changelog.rst:40
142
+ msgid "conor-oneill-2 +"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.16.0-changelog.rst:41
146
+ msgid "fcrozatier +"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.16.0-changelog.rst:42
150
+ msgid "mooncaker816 +"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.16.0-changelog.rst:43
154
+ msgid "niklebedenko +"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.16.0-changelog.rst:44
158
+ msgid "nyabkun +"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.16.0-changelog.rst:45
162
+ msgid "quark67"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.16.0-changelog.rst:48
166
+ msgid "The patches included in this release have been reviewed by the following contributors."
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.16.0-changelog.rst:53
170
+ msgid "Darylgolden"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.16.0-changelog.rst:54
174
+ msgid "Francesco Frassinelli"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.16.0-changelog.rst:55
178
+ msgid "Francisco Manríquez Novoa"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.16.0-changelog.rst:56
182
+ msgid "Gianluca Gippetto"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.16.0-changelog.rst:57
186
+ msgid "Jan-Hendrik Müller"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.16.0-changelog.rst:59
190
+ msgid "Kevin Lubick"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.16.0-changelog.rst:62
194
+ msgid "Pedro Lamkowski"
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.16.0-changelog.rst:63
198
+ msgid "Philipp Imhof"
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.16.0-changelog.rst:65
202
+ msgid "Ryan McCauley"
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.16.0-changelog.rst:67
206
+ msgid "TornaxO7"
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.16.0-changelog.rst:68
210
+ msgid "Tristan Schulz"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.16.0-changelog.rst:70
214
+ msgid "hickmott99"
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.16.0-changelog.rst:73
218
+ msgid "Pull requests merged"
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.16.0-changelog.rst:75
222
+ msgid "A total of 56 pull requests were merged for this release."
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.16.0-changelog.rst:78
226
+ msgid "Highlights"
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.16.0-changelog.rst:82
230
+ msgid ":pr:`2550`: New thematic guide: a deep dive into the internals of the library"
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.16.0-changelog.rst:81
234
+ msgid "This new :doc:`thematic guide </guides/deep_dive>` aims to be a comprehensive walkthrough describing all the things that Manim does when you run it to produce a video."
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.16.0-changelog.rst:84
238
+ msgid ":pr:`2732`: Improved overall structure of deployed documentation; added a dedicated :doc:`FAQ section </faq/index>`"
239
+ msgstr ""
240
+
241
+ #: ../../source/changelog/0.16.0-changelog.rst:90
242
+ msgid ":pr:`2749`: Added :class:`.ChangeSpeed`, an animation wrapper that allows to smoothly change the speed at which an animation is played"
243
+ msgstr ""
244
+
245
+ #: ../../source/changelog/0.16.0-changelog.rst:88
246
+ msgid "The speed of any animation can be changed by wrapping the animation with :class:`.ChangeSpeed` and passing a dictionary as ``speedinfo`` whose keys are the relative animation run time stamps and whose values are the absolute speed factors; e.g., ``{0.5: 2, 0.75: 0.25}`` smoothly speeds up the animation by a factor of 2 once it has been completed to 50%, and then it is smoothly slowed down to 1/4 of the default run speed after 75% of the animation are completed. The ``run_time`` of the animation will be adjusted to match the changed play speed."
247
+ msgstr ""
248
+
249
+ #: ../../source/changelog/0.16.0-changelog.rst:90
250
+ msgid "It is also possible to add time-based updaters that respect the change in speed, use the auxiliary :meth:`.ChangeSpeed.add_updater` method to do so."
251
+ msgstr ""
252
+
253
+ #: ../../source/changelog/0.16.0-changelog.rst:93
254
+ msgid "New features"
255
+ msgstr ""
256
+
257
+ #: ../../source/changelog/0.16.0-changelog.rst:95
258
+ msgid ":pr:`2667`: Made FFmpeg executable path configurable"
259
+ msgstr ""
260
+
261
+ #: ../../source/changelog/0.16.0-changelog.rst:98
262
+ msgid ":pr:`2739`: Added vectorized plotting functionality via keyword argument ``use_vectorized`` to improve performance"
263
+ msgstr ""
264
+
265
+ #: ../../source/changelog/0.16.0-changelog.rst:102
266
+ msgid "Enhancements"
267
+ msgstr ""
268
+
269
+ #: ../../source/changelog/0.16.0-changelog.rst:104
270
+ msgid ":pr:`2186`: Enabled filling color by value for :class:`.OpenGLSurface`, replaced ``colors`` keyword argument of :meth:`.Surface.set_fill_by_value` with ``colorscale``"
271
+ msgstr ""
272
+
273
+ #: ../../source/changelog/0.16.0-changelog.rst:107
274
+ msgid ":pr:`2288`: Added warning when attempting to add same mobject as child twice"
275
+ msgstr ""
276
+
277
+ #: ../../source/changelog/0.16.0-changelog.rst:112
278
+ msgid ":pr:`2707`: Fixed missing ``get_nth_curve_length_pieces`` method of :class:`.OpenGLVMobject`"
279
+ msgstr ""
280
+
281
+ #: ../../source/changelog/0.16.0-changelog.rst:111
282
+ msgid "Removed duplicate definition of ``get_curve_functions_with_lengths`` in ``OpenGLVMobject``"
283
+ msgstr ""
284
+
285
+ #: ../../source/changelog/0.16.0-changelog.rst:112
286
+ msgid "Added definition of ``get_nth_curve_length_pieces`` to ``OpenGLVMobject``"
287
+ msgstr ""
288
+
289
+ #: ../../source/changelog/0.16.0-changelog.rst:114
290
+ msgid ":pr:`2709`: Improved the look of the brackets of :class:`.Matrix`"
291
+ msgstr ""
292
+
293
+ #: ../../source/changelog/0.16.0-changelog.rst:117
294
+ msgid ":pr:`2714`: Fixed :meth:`.OpenGLVMobject.pointwise_become_partial` to improve stroke rendering"
295
+ msgstr ""
296
+
297
+ #: ../../source/changelog/0.16.0-changelog.rst:120
298
+ msgid ":pr:`2727`: Slight performance improvement for :class:`.ArrowVectorField` and Bézier curve computation"
299
+ msgstr ""
300
+
301
+ #: ../../source/changelog/0.16.0-changelog.rst:123
302
+ msgid ":pr:`2728`: Added :meth:`.VectorField.fit_to_coordinate_system` to fit a vector field to a given coordinate system"
303
+ msgstr ""
304
+
305
+ #: ../../source/changelog/0.16.0-changelog.rst:126
306
+ msgid ":pr:`2730`: Added note to let users find documentation of default CLI subcommand easier"
307
+ msgstr ""
308
+
309
+ #: ../../source/changelog/0.16.0-changelog.rst:129
310
+ msgid ":pr:`2746`: Installed ghostscript in the docker image"
311
+ msgstr ""
312
+
313
+ #: ../../source/changelog/0.16.0-changelog.rst:132
314
+ msgid ":pr:`2841`: Added :func:`.split_quadratic_bezier` and :func:`.subdivide_quadratic_bezier`"
315
+ msgstr ""
316
+
317
+ #: ../../source/changelog/0.16.0-changelog.rst:135
318
+ msgid ":pr:`2842`: CLI: Moved functionality from ``manim new`` to ``manim init`` and added deprecation warning for ``manim new``"
319
+ msgstr ""
320
+
321
+ #: ../../source/changelog/0.16.0-changelog.rst:138
322
+ msgid ":pr:`2866`: Reorganize test files to match library module structure"
323
+ msgstr ""
324
+
325
+ #: ../../source/changelog/0.16.0-changelog.rst:142
326
+ msgid "Fixed bugs"
327
+ msgstr ""
328
+
329
+ #: ../../source/changelog/0.16.0-changelog.rst:144
330
+ msgid ":pr:`2567`: Use tempconfig for every scene render"
331
+ msgstr ""
332
+
333
+ #: ../../source/changelog/0.16.0-changelog.rst:147
334
+ msgid ":pr:`2638`: Fixed :meth:`BarChart.change_bar_values` not updating when height is 0"
335
+ msgstr ""
336
+
337
+ #: ../../source/changelog/0.16.0-changelog.rst:150
338
+ msgid ":pr:`2661`: Fixed tip resize functionality for :class:`.Axes` to match documentation"
339
+ msgstr ""
340
+
341
+ #: ../../source/changelog/0.16.0-changelog.rst:153
342
+ msgid ":pr:`2703`: Default to utf-8 when reading files in :class:`.Code`"
343
+ msgstr ""
344
+
345
+ #: ../../source/changelog/0.16.0-changelog.rst:156
346
+ msgid ":pr:`2721`: Fixed bad text slicing for lines in :class:`.Paragraph`"
347
+ msgstr ""
348
+
349
+ #: ../../source/changelog/0.16.0-changelog.rst:159
350
+ msgid ":pr:`2725`: Fixed wrong indentation in :class:`.Code`"
351
+ msgstr ""
352
+
353
+ #: ../../source/changelog/0.16.0-changelog.rst:162
354
+ msgid ":pr:`2734`: Fixed OpenGL segfaults when running :meth:`.Scene.play` or :meth:`.Scene.wait` in interactive mode"
355
+ msgstr ""
356
+
357
+ #: ../../source/changelog/0.16.0-changelog.rst:165
358
+ msgid ":pr:`2753`: Fixed multiplatform builds for docker images in pipeline"
359
+ msgstr ""
360
+
361
+ #: ../../source/changelog/0.16.0-changelog.rst:168
362
+ msgid ":pr:`2757`: Added missing ``__init__.py`` file in :mod:`.docbuild` module"
363
+ msgstr ""
364
+
365
+ #: ../../source/changelog/0.16.0-changelog.rst:171
366
+ msgid ":pr:`2770`: Fixed bug in :meth:`.VMobject.proportion_from_point` that caused proportions greater than 1 to be returned"
367
+ msgstr ""
368
+
369
+ #: ../../source/changelog/0.16.0-changelog.rst:174
370
+ msgid ":pr:`2826`: Fixed leaked mobjects coming from :class:`.TransformMatchingAbstractBase`"
371
+ msgstr ""
372
+
373
+ #: ../../source/changelog/0.16.0-changelog.rst:177
374
+ msgid ":pr:`2870`: Fixed issue with ``manim init scene SCENE_NAME filename.py`` and removed necessity of ``main.py`` to be present in working directory"
375
+ msgstr ""
376
+
377
+ #: ../../source/changelog/0.16.0-changelog.rst:181
378
+ msgid "Documentation-related changes"
379
+ msgstr ""
380
+
381
+ #: ../../source/changelog/0.16.0-changelog.rst:183
382
+ msgid ":pr:`2704`: Updated URL to Pango Markup formatting page"
383
+ msgstr ""
384
+
385
+ #: ../../source/changelog/0.16.0-changelog.rst:186
386
+ msgid ":pr:`2716`: Improved the order of the reference manuals"
387
+ msgstr ""
388
+
389
+ #: ../../source/changelog/0.16.0-changelog.rst:189
390
+ msgid ":pr:`2720`: Fixed typo in docstring of :class:`.Angle`"
391
+ msgstr ""
392
+
393
+ #: ../../source/changelog/0.16.0-changelog.rst:192
394
+ msgid ":pr:`2722`: Fixed typos in docstrings of classes in :mod:`.mobject.table`"
395
+ msgstr ""
396
+
397
+ #: ../../source/changelog/0.16.0-changelog.rst:195
398
+ msgid ":pr:`2726`: Edited note on :class:`.NumberPlane` length and added another example"
399
+ msgstr ""
400
+
401
+ #: ../../source/changelog/0.16.0-changelog.rst:198
402
+ msgid ":pr:`2740`: Fixed documentation of :meth:`.Cylinder.get_direction`"
403
+ msgstr ""
404
+
405
+ #: ../../source/changelog/0.16.0-changelog.rst:201
406
+ msgid ":pr:`2755`: Fixed docstring of :meth:`.VMobject.get_end_anchors`"
407
+ msgstr ""
408
+
409
+ #: ../../source/changelog/0.16.0-changelog.rst:204
410
+ msgid ":pr:`2760`: Removed ``cmake`` from the MacOS installation section"
411
+ msgstr ""
412
+
413
+ #: ../../source/changelog/0.16.0-changelog.rst:207
414
+ msgid ":pr:`2767`: Added more questions and answers to FAQ section, new :doc:`OpenGL FAQ </faq/opengl>`"
415
+ msgstr ""
416
+
417
+ #: ../../source/changelog/0.16.0-changelog.rst:210
418
+ msgid ":pr:`2771`: Added documentation and testing for ``path_func`` keyword argument of :class:`.Transform`"
419
+ msgstr ""
420
+
421
+ #: ../../source/changelog/0.16.0-changelog.rst:213
422
+ msgid ":pr:`2828`: Removed suggestion issue template, added FAQ answer regarding proposing new features"
423
+ msgstr ""
424
+
425
+ #: ../../source/changelog/0.16.0-changelog.rst:216
426
+ msgid ":pr:`2849`: Added example for ``path_arc`` keyword argument of :class:`.Transform`"
427
+ msgstr ""
428
+
429
+ #: ../../source/changelog/0.16.0-changelog.rst:219
430
+ msgid ":pr:`2851`: Added an example on constructing a (neural) network using a partite :class:`.Graph`"
431
+ msgstr ""
432
+
433
+ #: ../../source/changelog/0.16.0-changelog.rst:222
434
+ msgid ":pr:`2855`: Added implicit ``docker.io/`` URL base in reference to docker images"
435
+ msgstr ""
436
+
437
+ #: ../../source/changelog/0.16.0-changelog.rst:225
438
+ msgid ":pr:`2861`: Added docstring for :meth:`.CoordinateSystem.plot_parametric_curve`"
439
+ msgstr ""
440
+
441
+ #: ../../source/changelog/0.16.0-changelog.rst:229
442
+ msgid "Changes concerning the testing system"
443
+ msgstr ""
444
+
445
+ #: ../../source/changelog/0.16.0-changelog.rst:231
446
+ msgid ":pr:`2743`: Replaced ``assert`` statements with with assertion functions from ``np.testing``"
447
+ msgstr ""
448
+
449
+ #: ../../source/changelog/0.16.0-changelog.rst:235
450
+ msgid "Changes to our development infrastructure"
451
+ msgstr ""
452
+
453
+ #: ../../source/changelog/0.16.0-changelog.rst:237
454
+ msgid ":pr:`2700`: CI: updated Python versions"
455
+ msgstr ""
456
+
457
+ #: ../../source/changelog/0.16.0-changelog.rst:240
458
+ msgid ":pr:`2701`: CI: added a workflow to publish docker image after releases and commits to main branch"
459
+ msgstr ""
460
+
461
+ #: ../../source/changelog/0.16.0-changelog.rst:244
462
+ msgid "Code quality improvements and similar refactors"
463
+ msgstr ""
464
+
465
+ #: ../../source/changelog/0.16.0-changelog.rst:246
466
+ msgid ":pr:`2680`: Increased minimum required version of ``numpy`` to 1.19"
467
+ msgstr ""
468
+
469
+ #: ../../source/changelog/0.16.0-changelog.rst:249
470
+ msgid ":pr:`2687`: Migrated from ``os.path`` to ``pathlib`` in :class:`.SVGMobject` and other locations"
471
+ msgstr ""
472
+
473
+ #: ../../source/changelog/0.16.0-changelog.rst:252
474
+ msgid ":pr:`2715`: Updated deprecated ``pillow`` constants"
475
+ msgstr ""
476
+
477
+ #: ../../source/changelog/0.16.0-changelog.rst:255
478
+ msgid ":pr:`2735`: Bump pyjwt from 2.3.0 to 2.4.0"
479
+ msgstr ""
480
+
481
+ #: ../../source/changelog/0.16.0-changelog.rst:258
482
+ msgid ":pr:`2748`: Bump pillow from 9.1.0 to 9.1.1"
483
+ msgstr ""
484
+
485
+ #: ../../source/changelog/0.16.0-changelog.rst:261
486
+ msgid ":pr:`2751`: Fixed flake C417 and improved a comment"
487
+ msgstr ""
488
+
489
+ #: ../../source/changelog/0.16.0-changelog.rst:264
490
+ msgid ":pr:`2825`: Bump notebook from 6.4.11 to 6.4.12"
491
+ msgstr ""
492
+
493
+ #: ../../source/changelog/0.16.0-changelog.rst:267
494
+ msgid ":pr:`2864`: Updated lockfile"
495
+ msgstr ""
496
+
497
+ #: ../../source/changelog/0.16.0-changelog.rst:271
498
+ msgid "New releases"
499
+ msgstr ""
500
+
501
+
data/docs/i18n/gettext/changelog/0.2.0-changelog.pot ADDED
@@ -0,0 +1,241 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.2.0-changelog.rst:3
10
+ msgid "v0.2.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.2.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.2.0-changelog.rst:5
18
+ msgid "January 1, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.2.0-changelog.rst:7
22
+ msgid "The changes since Manim Community release v0.1.1 are listed below."
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.2.0-changelog.rst:10
26
+ msgid "Breaking Changes"
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.2.0-changelog.rst:12
30
+ msgid "Remove all CONFIG dictionaries and all calls to ``digest_config`` and allow passing options directly to the constructor of the corresponding classes (:pr:`783`)."
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.2.0-changelog.rst:15
34
+ msgid "Practically, this means that old constructions using ``CONFIG`` like::"
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.2.0-changelog.rst:22
38
+ msgid "where corresponding objects were then instantiated as ``my_mobject = SomeMobject()`` should now be created simply using ``my_mobject = SomeMobject(my_awesome_property=42)``."
39
+ msgstr ""
40
+
41
+ #: ../../source/changelog/0.2.0-changelog.rst:25
42
+ msgid "Remove old syntax for animating mobject methods by passing the methods and arguments to ``self.play``, and use a new syntax featuring the ``animate`` property (:pr:`881`)."
43
+ msgstr ""
44
+
45
+ #: ../../source/changelog/0.2.0-changelog.rst:28
46
+ msgid "For example: the old-style ``play`` call ::"
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.2.0-changelog.rst:33
50
+ msgid "should be replaced with the new following call using the ``animate`` property::"
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.2.0-changelog.rst:38
54
+ msgid "New Features"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.2.0-changelog.rst:40
58
+ msgid "Added creation animation for :class:`~.ManimBanner` (:pr:`814`)"
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.2.0-changelog.rst:41
62
+ msgid "Added some documentation to :meth:`~.Scene.construct` (:pr:`753`)"
63
+ msgstr ""
64
+
65
+ #: ../../source/changelog/0.2.0-changelog.rst:42
66
+ msgid "Added a black and white monochromatic version of Manim's logo (:pr:`826`)"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.2.0-changelog.rst:43
70
+ msgid "Added support for a plugin system (``manim plugin`` subcommand + documentation) (:pr:`784`)"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.2.0-changelog.rst:44
74
+ msgid "Implemented ``__add__``, ``__iadd__``, ``__sub__``, and ``__isub__`` for :class:`~.Mobject` (allowing for notation like ``some_vgroup + some_mobject``) (:pr:`790`)"
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.2.0-changelog.rst:45
78
+ msgid "Added type hints to several files in the library (:pr:`835`)"
79
+ msgstr ""
80
+
81
+ #: ../../source/changelog/0.2.0-changelog.rst:46
82
+ msgid "Added some examples to :mod:`~.animation.creation` (:pr:`820`)"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.2.0-changelog.rst:47
86
+ msgid "Added some examples to :class:`~.DashedLine` and :class:`~.CurvesAsSubmobjects` (:pr:`833`)"
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.2.0-changelog.rst:48
90
+ msgid "Added new implementation for text rendered with Pango, :class:`~.MarkupText`, which can be formatted with an HTML-like syntax (:pr:`855`)"
91
+ msgstr ""
92
+
93
+ #: ../../source/changelog/0.2.0-changelog.rst:49
94
+ msgid "Added Fading in and out examples and deprecation of ``FadeInFromDown`` and ``FadeOutAndShiftDown`` (:pr:`827`)"
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.2.0-changelog.rst:50
98
+ msgid "Added example for :class:`~.MoveAlongPath` to the docs (:pr:`873`)"
99
+ msgstr ""
100
+
101
+ #: ../../source/changelog/0.2.0-changelog.rst:51
102
+ msgid "Added ambient rotate for other angles - theta, phi, gamma (:pr:`660`)"
103
+ msgstr ""
104
+
105
+ #: ../../source/changelog/0.2.0-changelog.rst:52
106
+ msgid "Use custom bindings for Pango (:pr:`878`)"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.2.0-changelog.rst:53
110
+ msgid "Added :class:`~.Graph`, a basic implementation for (graph theory) graphs (:pr:`861`)"
111
+ msgstr ""
112
+
113
+ #: ../../source/changelog/0.2.0-changelog.rst:54
114
+ msgid "Allow for chaining methods when using the new ``.animate`` syntax in :meth:`~.Scene.play` (:pr:`889`)"
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.2.0-changelog.rst:57
118
+ msgid "Bugfixes"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.2.0-changelog.rst:59
122
+ msgid "Fix doctests in .rst files (:pr:`797`)"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.2.0-changelog.rst:60
126
+ msgid "Fix failing doctest after adding ``manim plugin`` subcommand (:pr:`831`)"
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.2.0-changelog.rst:61
130
+ msgid "Normalize the direction vector in :meth:`~.mobject_update_utils.always_shift` (:pr:`839`)"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.2.0-changelog.rst:62
134
+ msgid "Add ``disable_ligatures`` to :class:`~.Text` (via :pr:`804`)"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.2.0-changelog.rst:63
138
+ msgid "Make scene caching aware of order of Mobjects (:pr:`845`)"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.2.0-changelog.rst:64
142
+ msgid "Fix :class:`~.CairoText` to work with new config structure (:pr:`858`)"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.2.0-changelog.rst:65
146
+ msgid "Added missing argument to classes inheriting from :class:`~.Matrix` (:pr:`859`)"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.2.0-changelog.rst:66
150
+ msgid "Fixed: ``z_index`` of mobjects contained in others as submobjects is now properly respected (:pr:`872`)"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.2.0-changelog.rst:67
154
+ msgid "Let :meth:`~.ParametricSurface.set_fill_by_checkboard` return the modified surface to allow method chaining (:pr:`883`)"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.2.0-changelog.rst:68
158
+ msgid "Mobjects added during an updater are added to ``Scene.moving_mobjects`` (:pr:`838`)"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.2.0-changelog.rst:69
162
+ msgid "Pass background color to JS renderer (:pr:`876`)"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.2.0-changelog.rst:70
166
+ msgid "Small fixes to docstrings. Tiny cleanups. Remove ``digest_mobject_attrs``. (:pr:`834`)"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.2.0-changelog.rst:71
170
+ msgid "Added closed shape detection in :class:`~.DashedVMobject` in order to achieve an even dash pattern (:pr:`884`)"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.2.0-changelog.rst:72
174
+ msgid "Fix Spelling in docstrings and variables across the library (:pr:`890`)"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.2.0-changelog.rst:75
178
+ msgid "Other changes"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.2.0-changelog.rst:77
182
+ msgid "Change library name to manim (:pr:`811`)"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.2.0-changelog.rst:78
186
+ msgid "Docker: use local files when building an image (:pr:`803`)"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.2.0-changelog.rst:79
190
+ msgid "Let ffmpeg render partial movie files directly instead of temp files (:pr:`817`)"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.2.0-changelog.rst:80
194
+ msgid "``manimce`` to ``manim`` & capitalizing Manim in readme (:pr:`794`)"
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.2.0-changelog.rst:81
198
+ msgid "Added flowchart for different docstring categories (:pr:`828`)"
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.2.0-changelog.rst:82
202
+ msgid "Improve example in module docstring of :mod:`~.animation.creation` + explicitly document buff parameter in :meth:`~.Mobject.arrange` (:pr:`825`)"
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.2.0-changelog.rst:83
206
+ msgid "Disable CI pipeline for Python 3.6 (:pr:`823`)"
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.2.0-changelog.rst:84
210
+ msgid "Update URLs in docs (:pr:`832`)"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.2.0-changelog.rst:85
214
+ msgid "Move upcoming changelog to GitHub-wiki (:pr:`822`)"
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.2.0-changelog.rst:86
218
+ msgid "Change badges in readme (:pr:`854`)"
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.2.0-changelog.rst:87
222
+ msgid "Exclude generated gRPC files from source control (:pr:`868`)"
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.2.0-changelog.rst:88
226
+ msgid "Added linguist-generated attribute to ``.gitattributes`` (:pr:`877`)"
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.2.0-changelog.rst:89
230
+ msgid "Cleanup: removed inheritance from ``object`` for some classes, refactor some imports (:pr:`795`)"
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.2.0-changelog.rst:90
234
+ msgid "Change several ``str.format()`` to ``f``-strings (:pr:`867`)"
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.2.0-changelog.rst:91
238
+ msgid "Update javascript renderer (:pr:`830`)"
239
+ msgstr ""
240
+
241
+
data/docs/i18n/gettext/changelog/0.3.0-changelog.pot ADDED
@@ -0,0 +1,221 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.3.0-changelog.rst:3
10
+ msgid "v0.3.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.3.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.3.0-changelog.rst:5
18
+ msgid "February 1, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.3.0-changelog.rst:7
22
+ msgid "The changes since Manim Community release v0.2.0 are listed below."
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.3.0-changelog.rst:11
26
+ msgid "New Features"
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.3.0-changelog.rst:13
30
+ msgid ":pr:`945`: :meth:`~.Graph.change_layout` method for :class:`~.Graph` mobject"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.3.0-changelog.rst:14
34
+ msgid ":pr:`943`: IPython %%manim magic"
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.3.0-changelog.rst:15
38
+ msgid ":pr:`970`: Added ``--version`` command line flag"
39
+ msgstr ""
40
+
41
+ #: ../../source/changelog/0.3.0-changelog.rst:16
42
+ msgid ":pr:`948`: Allow passing a code string to :class:`~.Code`"
43
+ msgstr ""
44
+
45
+ #: ../../source/changelog/0.3.0-changelog.rst:17
46
+ msgid ":pr:`917`: Allow overriding new-style method animations"
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.3.0-changelog.rst:18
50
+ msgid ":pr:`756`: Allow setting frame_height and frame_width via config file"
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.3.0-changelog.rst:19
54
+ msgid ":pr:`939`: Added custom font files support"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.3.0-changelog.rst:20
58
+ msgid ":pr:`892`: Added ManimCommunity colors"
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.3.0-changelog.rst:21
62
+ msgid ":pr:`922`: Tree layout for Graph mobject"
63
+ msgstr ""
64
+
65
+ #: ../../source/changelog/0.3.0-changelog.rst:22
66
+ msgid ":pr:`935`: Added code of conduct"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.3.0-changelog.rst:23
70
+ msgid ":pr:`916`: Multi-column layout for partite graphs"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.3.0-changelog.rst:24
74
+ msgid ":pr:`742`: Units: Pixels, Munits, Percent in :mod:`~.utils.unit`"
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.3.0-changelog.rst:25
78
+ msgid ":pr:`893`: Convenience method :meth:`~.Graph.from_networkx` for creating a graph from a networkx graph"
79
+ msgstr ""
80
+
81
+ #: ../../source/changelog/0.3.0-changelog.rst:28
82
+ msgid "Bugfixes and Enhancements"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.3.0-changelog.rst:30
86
+ msgid ":pr:`988`: Fix Windows CI pipeline by adding missing LaTeX package"
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.3.0-changelog.rst:31
90
+ msgid ":pr:`961`: Added typings and docs for vectorized mobjects and bezier related functions"
91
+ msgstr ""
92
+
93
+ #: ../../source/changelog/0.3.0-changelog.rst:32
94
+ msgid ":pr:`977`: JupyterLab docker image and documentation for manim and IPython"
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.3.0-changelog.rst:33
98
+ msgid ":pr:`985`: Fix variable name for webgl renderer"
99
+ msgstr ""
100
+
101
+ #: ../../source/changelog/0.3.0-changelog.rst:34
102
+ msgid ":pr:`954`: Fix edges lagging behind vertices in animations of graphs"
103
+ msgstr ""
104
+
105
+ #: ../../source/changelog/0.3.0-changelog.rst:35
106
+ msgid ":pr:`980`: Allow usage of custom Pygments styles in Code"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.3.0-changelog.rst:36
110
+ msgid ":pr:`952`: Allow passing tween information to the WebGL frontend"
111
+ msgstr ""
112
+
113
+ #: ../../source/changelog/0.3.0-changelog.rst:37
114
+ msgid ":pr:`978`: Fix ``possible_paths`` not printing in ``code_mobject``"
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.3.0-changelog.rst:38
118
+ msgid ":pr:`976`: Update ``ManimPango``"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.3.0-changelog.rst:39
122
+ msgid ":pr:`967`: Automatically import plugins"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.3.0-changelog.rst:40
126
+ msgid ":pr:`971`: Make ManimCommunity look consistent"
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.3.0-changelog.rst:41
130
+ msgid ":pr:`957`: Raise ``NotImplementedError`` when trying to chain overridden method animations"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.3.0-changelog.rst:42
134
+ msgid ":pr:`947`: Several fixes and improvements for :class:`~.PointCloundDot`"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.3.0-changelog.rst:43
138
+ msgid ":pr:`923`: Documentation: move installation instructions for developers to page for developers"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.3.0-changelog.rst:44
142
+ msgid ":pr:`964`: Added unit test for :class:`~.NumberLine`'s unit vector"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.3.0-changelog.rst:45
146
+ msgid ":pr:`960`: Magnitude of :class:`~.NumberLine`'s unit vector should be ``unit_size``, not 1"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.3.0-changelog.rst:46
150
+ msgid ":pr:`958`: Fix code formatting in ``utils/debug.py``"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.3.0-changelog.rst:47
154
+ msgid ":pr:`953`: Update license year"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.3.0-changelog.rst:48
158
+ msgid ":pr:`944`: Interpolate stroke opacity in :class:`~.FadeIn` and update ``stroke_opacity`` and ``fill_opacity`` in :meth:`~.VMobject.set_stroke` and :meth:`~.VMobject.set_fill`"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.3.0-changelog.rst:49
162
+ msgid ":pr:`865`: Rename ``get_submobject_index_labels`` to ``index_labels``"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.3.0-changelog.rst:50
166
+ msgid ":pr:`941`: Added keyword arguments ``x_min``, ``x_max``, ``y_min``, ``y_max`` to :class:`~.ThreeDAxes`"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.3.0-changelog.rst:51
170
+ msgid ":pr:`886`: Let the render progress bar show details about the rendered animation again"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.3.0-changelog.rst:52
174
+ msgid ":pr:`936`: Fix :class:`~.BulletedList` TeX environment problem and add a typing to ``get_module``"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.3.0-changelog.rst:53
178
+ msgid ":pr:`938`: Remove dependency on progressbar"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.3.0-changelog.rst:54
182
+ msgid ":pr:`937`: Change 'brew cask install' to 'brew install --cask' for CI pipeline"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.3.0-changelog.rst:55
186
+ msgid ":pr:`933`: Make matrix work with lists again"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.3.0-changelog.rst:56
190
+ msgid ":pr:`932`: Correctly parse ``log_dir`` option"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.3.0-changelog.rst:57
194
+ msgid ":pr:`920`: Raise error if markup in :class:`~.MarkupText` is invalid"
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.3.0-changelog.rst:58
198
+ msgid ":pr:`929`: Raise an error if a :class:`~.Matrix` object is created with < 2-dimensional input"
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.3.0-changelog.rst:59
202
+ msgid ":pr:`907`: Make Scene.add_sound work again (when running with ``--disable_caching``)"
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.3.0-changelog.rst:60
206
+ msgid ":pr:`906`: Allow new-style method animation to be used in animation groups"
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.3.0-changelog.rst:61
210
+ msgid ":pr:`908`: Removed deprecated command line arguments from documentation"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.3.0-changelog.rst:62
214
+ msgid ":pr:`903`: Tiny grammar improvements"
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.3.0-changelog.rst:63
218
+ msgid ":pr:`904`: Added blank line between imports and class example"
219
+ msgstr ""
220
+
221
+
data/docs/i18n/gettext/changelog/0.4.0-changelog.pot ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.4.0-changelog.rst:3
10
+ msgid "v0.4.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.4.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.4.0-changelog.rst:5
18
+ msgid "March 3, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.4.0-changelog.rst:7
22
+ msgid "The changes since Manim Community release v0.3.0 are listed below."
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.4.0-changelog.rst:10
26
+ msgid "Breaking Changes"
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.4.0-changelog.rst:12
30
+ msgid ":pr:`915`: Manim's SVG engine has been reworked and is able to handle a wider variations of SVG files. In particular: fill and stroke properties are now retained from the original files. Breaking change: ``VMobjectFromSVGPathstring`` is deprecated and has been renamed to ``SVGPathMobject``."
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.4.0-changelog.rst:16
34
+ msgid "New Features"
35
+ msgstr ""
36
+
37
+ #: ../../source/changelog/0.4.0-changelog.rst:18
38
+ msgid ":pr:`1026`: Add 3D Mobjects: :class:`~.Cone`, :class:`~.Cylinder`, :class:`~.Line3D`, :class:`~.Arrow3D` and :class:`~.Torus`"
39
+ msgstr ""
40
+
41
+ #: ../../source/changelog/0.4.0-changelog.rst:19
42
+ msgid ":pr:`1047`: Add documentation and examples for :class:`~.Matrix`"
43
+ msgstr ""
44
+
45
+ #: ../../source/changelog/0.4.0-changelog.rst:20
46
+ msgid ":pr:`1044`: ``register_font`` is available for macOS"
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.4.0-changelog.rst:21
50
+ msgid ":pr:`995`: Add generic :func:`~.Mobject.set` method and compatibility layer between properties and ``get_*``/``set_*`` methods"
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.4.0-changelog.rst:24
54
+ msgid "Bugfixes and Enhancements"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.4.0-changelog.rst:26
58
+ msgid ":pr:`981`: Fixed hot reload functionality for the WebGL renderer on Windows"
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.4.0-changelog.rst:27
62
+ msgid ":pr:`1053`: Repair links to source code in stable version of documentation"
63
+ msgstr ""
64
+
65
+ #: ../../source/changelog/0.4.0-changelog.rst:28
66
+ msgid ":pr:`1067`: Add ManimPango to ReadTheDocs requirements"
67
+ msgstr ""
68
+
69
+ #: ../../source/changelog/0.4.0-changelog.rst:29
70
+ msgid ":pr:`1058`: Replace ``<color>`` syntax by Pango's ``<span foreground>`` for coloring parts of :class:`~.MarkupText` and allow using colors for underline, overline and strikethrough in MarkupText"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.4.0-changelog.rst:30
74
+ msgid ":pr:`1063`: Fix documentation related to ``.animate``"
75
+ msgstr ""
76
+
77
+ #: ../../source/changelog/0.4.0-changelog.rst:31
78
+ msgid ":pr:`1065`: Remove duplicate word 'vector'"
79
+ msgstr ""
80
+
81
+ #: ../../source/changelog/0.4.0-changelog.rst:32
82
+ msgid ":pr:`1060`: Update Linux installation instructions to mention the installation of Pango"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.4.0-changelog.rst:33
86
+ msgid ":pr:`1050`: Ensure that the user-supplied stroke color and width gets applied to :class:`~.Cross`"
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.4.0-changelog.rst:34
90
+ msgid ":pr:`1059`: More descriptive error when accessing an unhandled mobject attribute"
91
+ msgstr ""
92
+
93
+ #: ../../source/changelog/0.4.0-changelog.rst:35
94
+ msgid ":pr:`1048`: Use absolute path in ``make_and_open_docs.py``"
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.4.0-changelog.rst:36
98
+ msgid ":pr:`1000`: Remove ``MovingCameraScene.setup`` and ``MovingCameraScene.camera_frame``"
99
+ msgstr ""
100
+
101
+ #: ../../source/changelog/0.4.0-changelog.rst:37
102
+ msgid ":pr:`1051`: Corrections for setting stroke related attributes on :class:`~.VMobject`"
103
+ msgstr ""
104
+
105
+ #: ../../source/changelog/0.4.0-changelog.rst:38
106
+ msgid ":pr:`1043`: Make :class:`~.CubicBezier` explicitly accept four points"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.4.0-changelog.rst:39
110
+ msgid ":pr:`1046`: Use any version of ``importlib-metadata``"
111
+ msgstr ""
112
+
113
+ #: ../../source/changelog/0.4.0-changelog.rst:40
114
+ msgid ":pr:`1030`: Parse ``.log`` file and try to print LaTeX errors if compilation fails"
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.4.0-changelog.rst:41
118
+ msgid ":pr:`1015`: Documentation: Add more explicit instructions related to ``tlmgr``"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.4.0-changelog.rst:42
122
+ msgid ":pr:`1028`: Documentation: Update installation guide on mac with Apple Silicon"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.4.0-changelog.rst:43
126
+ msgid ":pr:`1032`: Remove ``Square.side_length`` property"
127
+ msgstr ""
128
+
129
+ #: ../../source/changelog/0.4.0-changelog.rst:44
130
+ msgid ":pr:`1031`: Fix link to wikipedia vector graphics page"
131
+ msgstr ""
132
+
133
+ #: ../../source/changelog/0.4.0-changelog.rst:45
134
+ msgid ":pr:`1021`: Documentation: Added example to :class:`~.CubicBezier`"
135
+ msgstr ""
136
+
137
+ #: ../../source/changelog/0.4.0-changelog.rst:46
138
+ msgid ":pr:`1017`: Added ``progress_bar`` to ``digest_args`` to fix the ``--progress_bar`` CLI flag"
139
+ msgstr ""
140
+
141
+ #: ../../source/changelog/0.4.0-changelog.rst:47
142
+ msgid ":pr:`1018`: Remove redundancy in :class:`~.FunctionGraph` arguments"
143
+ msgstr ""
144
+
145
+ #: ../../source/changelog/0.4.0-changelog.rst:48
146
+ msgid ":pr:`1024`: Migrate ``width`` / ``height`` / ``depth`` to properties"
147
+ msgstr ""
148
+
149
+ #: ../../source/changelog/0.4.0-changelog.rst:49
150
+ msgid ":pr:`1022`: Fix ``-p`` flag when passing ``-s``"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.4.0-changelog.rst:50
154
+ msgid ":pr:`1008`: CI pipeline: fix release asset upload"
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.4.0-changelog.rst:51
158
+ msgid ":pr:`983`: Make sure last frame for animations with updaters is correct"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.4.0-changelog.rst:52
162
+ msgid ":pr:`984`: Add manim version to CLI output, append version name for generated ``.gif`` and ``.png`` files, add version to metadata of rendered videos, change dark blue terminal text to default green"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.4.0-changelog.rst:53
166
+ msgid ":pr:`993`: Fix setting Mobject color to a gradient by passing a list of colors in :meth:`~.VMobject.set_color`"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.4.0-changelog.rst:54
170
+ msgid ":pr:`1003`: Fix animation :class:`~.GrowArrow`"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.4.0-changelog.rst:55
174
+ msgid ":pr:`1010`: Disable STDIN interaction for ffmpeg concat."
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.4.0-changelog.rst:56
178
+ msgid ":pr:`969`: Fix the ``--tex_template`` CLI flag"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.4.0-changelog.rst:57
182
+ msgid ":pr:`989`: Fix the ``manim cfg export`` subcommand"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.4.0-changelog.rst:58
186
+ msgid ":pr:`1005`: Fix the feature where ``-`` is used as the filename"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.4.0-changelog.rst:59
190
+ msgid ":pr:`998`: Allow using hexadecimal color codes with 3 characters"
191
+ msgstr ""
192
+
193
+
data/docs/i18n/gettext/changelog/0.5.0-changelog.pot ADDED
@@ -0,0 +1,634 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.5.0-changelog.rst:3
10
+ msgid "v0.5.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.5.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.5.0-changelog.rst:5
18
+ msgid "April 02, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.5.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.5.0-changelog.rst:10
26
+ msgid "A total of 35 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.5.0-changelog.rst:14
30
+ msgid "Abel Aebker +"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.5.0-changelog.rst:15
34
+ #: ../../source/changelog/0.5.0-changelog.rst:47
35
+ msgid "Abhijith Muthyala"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.5.0-changelog.rst:16
39
+ msgid "AntonBallmaier +"
40
+ msgstr ""
41
+
42
+ #: ../../source/changelog/0.5.0-changelog.rst:17
43
+ msgid "Aron"
44
+ msgstr ""
45
+
46
+ #: ../../source/changelog/0.5.0-changelog.rst:18
47
+ #: ../../source/changelog/0.5.0-changelog.rst:48
48
+ msgid "Benjamin Hackl"
49
+ msgstr ""
50
+
51
+ #: ../../source/changelog/0.5.0-changelog.rst:19
52
+ msgid "Bogdan Stăncescu +"
53
+ msgstr ""
54
+
55
+ #: ../../source/changelog/0.5.0-changelog.rst:20
56
+ msgid "Darylgolden"
57
+ msgstr ""
58
+
59
+ #: ../../source/changelog/0.5.0-changelog.rst:21
60
+ #: ../../source/changelog/0.5.0-changelog.rst:50
61
+ msgid "Devin Neal"
62
+ msgstr ""
63
+
64
+ #: ../../source/changelog/0.5.0-changelog.rst:22
65
+ msgid "GameDungeon +"
66
+ msgstr ""
67
+
68
+ #: ../../source/changelog/0.5.0-changelog.rst:23
69
+ #: ../../source/changelog/0.5.0-changelog.rst:51
70
+ msgid "Hugues Devimeux"
71
+ msgstr ""
72
+
73
+ #: ../../source/changelog/0.5.0-changelog.rst:24
74
+ #: ../../source/changelog/0.5.0-changelog.rst:52
75
+ msgid "Jason Villanueva"
76
+ msgstr ""
77
+
78
+ #: ../../source/changelog/0.5.0-changelog.rst:25
79
+ #: ../../source/changelog/0.5.0-changelog.rst:53
80
+ msgid "Kapil Sachdeva"
81
+ msgstr ""
82
+
83
+ #: ../../source/changelog/0.5.0-changelog.rst:26
84
+ #: ../../source/changelog/0.5.0-changelog.rst:54
85
+ msgid "KingWampy"
86
+ msgstr ""
87
+
88
+ #: ../../source/changelog/0.5.0-changelog.rst:27
89
+ msgid "Lionel Ray +"
90
+ msgstr ""
91
+
92
+ #: ../../source/changelog/0.5.0-changelog.rst:28
93
+ #: ../../source/changelog/0.5.0-changelog.rst:57
94
+ msgid "Mark Miller"
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.5.0-changelog.rst:29
98
+ msgid "Mohammad Al-Fetyani +"
99
+ msgstr ""
100
+
101
+ #: ../../source/changelog/0.5.0-changelog.rst:30
102
+ #: ../../source/changelog/0.5.0-changelog.rst:59
103
+ msgid "Naveen M K"
104
+ msgstr ""
105
+
106
+ #: ../../source/changelog/0.5.0-changelog.rst:31
107
+ msgid "Niklas Dewally +"
108
+ msgstr ""
109
+
110
+ #: ../../source/changelog/0.5.0-changelog.rst:32
111
+ msgid "Oliver +"
112
+ msgstr ""
113
+
114
+ #: ../../source/changelog/0.5.0-changelog.rst:33
115
+ msgid "Roopesh +"
116
+ msgstr ""
117
+
118
+ #: ../../source/changelog/0.5.0-changelog.rst:34
119
+ msgid "Seb Pearce +"
120
+ msgstr ""
121
+
122
+ #: ../../source/changelog/0.5.0-changelog.rst:35
123
+ msgid "aebkea +"
124
+ msgstr ""
125
+
126
+ #: ../../source/changelog/0.5.0-changelog.rst:36
127
+ msgid "friedkeenan"
128
+ msgstr ""
129
+
130
+ #: ../../source/changelog/0.5.0-changelog.rst:37
131
+ msgid "hydrobeam +"
132
+ msgstr ""
133
+
134
+ #: ../../source/changelog/0.5.0-changelog.rst:38
135
+ msgid "kolibril13"
136
+ msgstr ""
137
+
138
+ #: ../../source/changelog/0.5.0-changelog.rst:39
139
+ msgid "sparshg"
140
+ msgstr ""
141
+
142
+ #: ../../source/changelog/0.5.0-changelog.rst:40
143
+ msgid "tfglynn +"
144
+ msgstr ""
145
+
146
+ #: ../../source/changelog/0.5.0-changelog.rst:43
147
+ msgid "The patches included in this release have been reviewed by the following contributors."
148
+ msgstr ""
149
+
150
+ #: ../../source/changelog/0.5.0-changelog.rst:46
151
+ msgid "Abel Aebker"
152
+ msgstr ""
153
+
154
+ #: ../../source/changelog/0.5.0-changelog.rst:49
155
+ msgid "Bogdan Stăncescu"
156
+ msgstr ""
157
+
158
+ #: ../../source/changelog/0.5.0-changelog.rst:55
159
+ msgid "Leo Torres"
160
+ msgstr ""
161
+
162
+ #: ../../source/changelog/0.5.0-changelog.rst:56
163
+ msgid "Lionel Ray"
164
+ msgstr ""
165
+
166
+ #: ../../source/changelog/0.5.0-changelog.rst:58
167
+ msgid "Mohammad Al-Fetyani"
168
+ msgstr ""
169
+
170
+ #: ../../source/changelog/0.5.0-changelog.rst:60
171
+ msgid "Oliver"
172
+ msgstr ""
173
+
174
+ #: ../../source/changelog/0.5.0-changelog.rst:61
175
+ msgid "Ricky Chon"
176
+ msgstr ""
177
+
178
+ #: ../../source/changelog/0.5.0-changelog.rst:62
179
+ msgid "vector67"
180
+ msgstr ""
181
+
182
+ #: ../../source/changelog/0.5.0-changelog.rst:65
183
+ msgid "Pull requests merged"
184
+ msgstr ""
185
+
186
+ #: ../../source/changelog/0.5.0-changelog.rst:67
187
+ msgid "A total of 64 pull requests were merged for this release."
188
+ msgstr ""
189
+
190
+ #: ../../source/changelog/0.5.0-changelog.rst:70
191
+ msgid "Highlights"
192
+ msgstr ""
193
+
194
+ #: ../../source/changelog/0.5.0-changelog.rst:73
195
+ msgid ":pr:`1075`: Add OpenGL Renderer"
196
+ msgstr ""
197
+
198
+ #: ../../source/changelog/0.5.0-changelog.rst:73
199
+ msgid "Adds an OpenGLRenderer, OpenGLCamera, OpenGL-enabled Mobjects, and a ``--use_opengl_renderer`` flag. When this flag is passed, you can pass the ``-p`` flag to preview animations, the ``-w`` flag to generate video, and the ``-q`` flag to specify render quality. If you don't pass either the ``-p`` or the ``-w`` flag, nothing will happen. Scenes rendered with the OpenGL renderer must *only* use OpenGL-enabled Mobjects."
200
+ msgstr ""
201
+
202
+ #: ../../source/changelog/0.5.0-changelog.rst:76
203
+ msgid "Deprecated classes and functions"
204
+ msgstr ""
205
+
206
+ #: ../../source/changelog/0.5.0-changelog.rst:80
207
+ msgid ":pr:`1124`: Deprecated :class:`ShowCreation` in favor of :class:`Create`"
208
+ msgstr ""
209
+
210
+ #: ../../source/changelog/0.5.0-changelog.rst:79
211
+ msgid "Deprecated :class:`ShowCreation` in favor of :class:`Create` across the library with the exception of the `show_creation` boolean variable `vector_space_scene.py`"
212
+ msgstr ""
213
+
214
+ #: ../../source/changelog/0.5.0-changelog.rst:80
215
+ msgid "Added a deprecation warning in the original :class:`ShowCreation` class."
216
+ msgstr ""
217
+
218
+ #: ../../source/changelog/0.5.0-changelog.rst:83
219
+ msgid ":pr:`1110`: Deprecated SmallDot + OpenGLSmallDot"
220
+ msgstr ""
221
+
222
+ #: ../../source/changelog/0.5.0-changelog.rst:83
223
+ msgid "`SmallDot` isn't necessary and a deprecation warning will be raised. This will be removed in a future release."
224
+ msgstr ""
225
+
226
+ #: ../../source/changelog/0.5.0-changelog.rst:86
227
+ msgid "New features"
228
+ msgstr ""
229
+
230
+ #: ../../source/changelog/0.5.0-changelog.rst:91
231
+ msgid ":pr:`1037`: Added new fade and transform animations (:class:`~.TransformMatchingShapes`, :class:`~.TransformMatchingTex`, :class:`~.FadeTransform`) from 3b1b/manim"
232
+ msgstr ""
233
+
234
+ #: ../../source/changelog/0.5.0-changelog.rst:89
235
+ msgid "Added new Fade animation: :class:`~FadeOutToPoint` Added :class:`~FadeTransform` and :class:`~FadeTransformPieces` for transforming mobjects and submobjects with a fade Added :class:`~TransformMatchingShapes` and :class:`~TransformMatchingTex` for transforming mobjects and tex that have matching parts"
236
+ msgstr ""
237
+
238
+ #: ../../source/changelog/0.5.0-changelog.rst:93
239
+ msgid ":pr:`1097`: Added 3D Mobject :class:`~.Dot3D`"
240
+ msgstr ""
241
+
242
+ #: ../../source/changelog/0.5.0-changelog.rst:96
243
+ msgid ":pr:`1074`: Added jupyter media_width option to the config"
244
+ msgstr ""
245
+
246
+ #: ../../source/changelog/0.5.0-changelog.rst:100
247
+ msgid ":pr:`1107`: Added :class:`~.Unwrite` animation class to complement :class:`~.Write`"
248
+ msgstr ""
249
+
250
+ #: ../../source/changelog/0.5.0-changelog.rst:100
251
+ msgid "Added :class:`Unwrite` which inherits from :class:`~.Write`. It automatically reverses the animation of :class:`~.Write` by passing the reversed rate function, but it also takes an additional boolean parameter `reverse` which, if `False`, renders the animation from left to right (assuming text oriented in the usual way), but if `True`, it renders right to left."
252
+ msgstr ""
253
+
254
+ #: ../../source/changelog/0.5.0-changelog.rst:103
255
+ msgid ":pr:`1085`: Added :class:`~.Angle` and :class:`~.RightAngle` for intersecting lines"
256
+ msgstr ""
257
+
258
+ #: ../../source/changelog/0.5.0-changelog.rst:103
259
+ msgid ":class:`~.Angle` and :class:`~.RightAngle` both take two lines as input. If they intersect, or share a common vertex, an angle is drawn between them. Users can customize the look of the angle and also use a dotted right angle."
260
+ msgstr ""
261
+
262
+ #: ../../source/changelog/0.5.0-changelog.rst:106
263
+ msgid "Enhancements"
264
+ msgstr ""
265
+
266
+ #: ../../source/changelog/0.5.0-changelog.rst:108
267
+ msgid ":pr:`1144`: Improved quality of GIFs"
268
+ msgstr ""
269
+
270
+ #: ../../source/changelog/0.5.0-changelog.rst:114
271
+ msgid ":pr:`1157`: Refresh triangulation on call to :meth:`~.OpenGLVMobject.apply_points_function`"
272
+ msgstr ""
273
+
274
+ #: ../../source/changelog/0.5.0-changelog.rst:112
275
+ msgid "Rotate called apply_points_function, which was previous not subclassed by OpenGLMobject - now it is. Then, the vertex normals can be updated too."
276
+ msgstr ""
277
+
278
+ #: ../../source/changelog/0.5.0-changelog.rst:114
279
+ msgid "Additionally, the old_points matrix would change after rotating, making the old points / new points test irrelevant. This is addressed with a .copy call."
280
+ msgstr ""
281
+
282
+ #: ../../source/changelog/0.5.0-changelog.rst:116
283
+ msgid ":pr:`1151`: Added parametric function support to :class:`OpenGLSurface`"
284
+ msgstr ""
285
+
286
+ #: ../../source/changelog/0.5.0-changelog.rst:119
287
+ msgid ":pr:`1139`: In-Code `config[\"preview\"]` Support"
288
+ msgstr ""
289
+
290
+ #: ../../source/changelog/0.5.0-changelog.rst:123
291
+ msgid ":pr:`1123`: Added caching, skipping, and user-specified background colors to the OpenGL renderer"
292
+ msgstr ""
293
+
294
+ #: ../../source/changelog/0.5.0-changelog.rst:123
295
+ msgid "OpenGL play logic has been improved to support caching and skipping with `-n` argument ( it is now similar to Cairo play logic). A random bug was fixed in OpenGLSurface and OpenGL background color can now be changed via `background_color` argument."
296
+ msgstr ""
297
+
298
+ #: ../../source/changelog/0.5.0-changelog.rst:128
299
+ msgid ":pr:`1118`: Allow passing animation arguments with .animate syntax"
300
+ msgstr ""
301
+
302
+ #: ../../source/changelog/0.5.0-changelog.rst:126
303
+ msgid "Users will now be able to do things like `obj.animate(run_time=2).method(arg)` if they want to specify animation arguments for an individual `.animate` call, and can still not specify any arguments like `obj.animate.method(arg)`."
304
+ msgstr ""
305
+
306
+ #: ../../source/changelog/0.5.0-changelog.rst:128
307
+ msgid "Passing animation arguments is only allowed directly after `.animate` is accessed, if passed elsewhere then a `ValueError` is raised."
308
+ msgstr ""
309
+
310
+ #: ../../source/changelog/0.5.0-changelog.rst:132
311
+ msgid ":pr:`718`: Rotating the numbers in y axis"
312
+ msgstr ""
313
+
314
+ #: ../../source/changelog/0.5.0-changelog.rst:131
315
+ msgid "In Axes, the y axis will be rotated 90deg but the numbers are also rotated and shouldn't be. Fixes this issue."
316
+ msgstr ""
317
+
318
+ #: ../../source/changelog/0.5.0-changelog.rst:135
319
+ msgid ":pr:`1070`: Raise FileNotFoundError when unable to locate the .cfg file specified via ``--config_file``"
320
+ msgstr ""
321
+
322
+ #: ../../source/changelog/0.5.0-changelog.rst:135
323
+ msgid "Raising the error will stop script execution and let the user know that there are problems with the `--config_file` location instead of reverting back to the default configuration."
324
+ msgstr ""
325
+
326
+ #: ../../source/changelog/0.5.0-changelog.rst:138
327
+ msgid "Fixed bugs"
328
+ msgstr ""
329
+
330
+ #: ../../source/changelog/0.5.0-changelog.rst:140
331
+ msgid ":pr:`1224`: Fixed :class:`~.ShowIncreasingSubsets`, :class:`~.ShowSubmobjectsOneByOne`, and :class:`~.AddTextLetterByLetter`"
332
+ msgstr ""
333
+
334
+ #: ../../source/changelog/0.5.0-changelog.rst:143
335
+ msgid ":pr:`1201`: Prevent crash on :meth:`~.Scene.embed` for empty scenes"
336
+ msgstr ""
337
+
338
+ #: ../../source/changelog/0.5.0-changelog.rst:146
339
+ msgid ":pr:`1192`: Fixed issue when an animation is cached, manim can't merge the partial movie files."
340
+ msgstr ""
341
+
342
+ #: ../../source/changelog/0.5.0-changelog.rst:150
343
+ msgid ":pr:`1193`: Fixed using :class:`~.Animation` without a child :class:`~.Mobject` in :class:`~.AnimationGroup`"
344
+ msgstr ""
345
+
346
+ #: ../../source/changelog/0.5.0-changelog.rst:150
347
+ msgid "`AnimationGroup` may now take `Animation` objects which do not have a child `Mobject`, such as `Wait`."
348
+ msgstr ""
349
+
350
+ #: ../../source/changelog/0.5.0-changelog.rst:152
351
+ msgid ":pr:`1170`: Fixed minor SVG parsing bugs"
352
+ msgstr ""
353
+
354
+ #: ../../source/changelog/0.5.0-changelog.rst:155
355
+ msgid ":pr:`1159`: Added support for multiple transforms in the same SVG element"
356
+ msgstr ""
357
+
358
+ #: ../../source/changelog/0.5.0-changelog.rst:159
359
+ msgid ":pr:`1156`: Fixed :class:`~.DrawBorderThenFill` to support OpenGL and improved type hints for some functions"
360
+ msgstr ""
361
+
362
+ #: ../../source/changelog/0.5.0-changelog.rst:159
363
+ msgid "Fixed a bug in :class:`~.DrawBorderThenFill` that prevented :class:`~.Write` animations from working with :class:`~.OpenGLVMobjects` and slightly improved type hints for some animation functions to include :class:`~.OpenGLVMobject`."
364
+ msgstr ""
365
+
366
+ #: ../../source/changelog/0.5.0-changelog.rst:162
367
+ msgid ":pr:`1134`: Fixed the `-a` flag."
368
+ msgstr ""
369
+
370
+ #: ../../source/changelog/0.5.0-changelog.rst:162
371
+ msgid "The ``-a`` / ``--write-all`` flag was broken. When used, it would cause Manim to crash just after beginning to render the second scene."
372
+ msgstr ""
373
+
374
+ #: ../../source/changelog/0.5.0-changelog.rst:165
375
+ msgid ":pr:`1115`: Fixed bugs in :class:`~.OpenGLMobject` and added :class:`ApplyMethod` support"
376
+ msgstr ""
377
+
378
+ #: ../../source/changelog/0.5.0-changelog.rst:165
379
+ msgid "Fixed undefined variables and converted :class:`Mobject` to :class:`OpenGLMobject`. Also, fixed assert statement in :class:`ApplyMethod`."
380
+ msgstr ""
381
+
382
+ #: ../../source/changelog/0.5.0-changelog.rst:171
383
+ msgid ":pr:`1092`: Refactored coordinate_systems.py, fixed bugs, added :class:`~.NumberPlane` test"
384
+ msgstr ""
385
+
386
+ #: ../../source/changelog/0.5.0-changelog.rst:168
387
+ msgid "The default behavior of :meth:`~.Mobject.rotate` is to rotate about the center of :class:`~.Mobject`. :class:`~.NumberLine` is symmetric about the point at the number 0 only when ``|x_min|`` == ``|x_max|``. Ideally, the rotation should coincide with the point at number 0 on the line."
388
+ msgstr ""
389
+
390
+ #: ../../source/changelog/0.5.0-changelog.rst:171
391
+ msgid "Added a regression test and additionally fixed some bugs introduced in :pr:`718`."
392
+ msgstr ""
393
+
394
+ #: ../../source/changelog/0.5.0-changelog.rst:174
395
+ msgid ":pr:`1078`: Removed stray print statements from `__main__.py`"
396
+ msgstr ""
397
+
398
+ #: ../../source/changelog/0.5.0-changelog.rst:174
399
+ msgid "Uses rich's print traceback instead and fixes an issue in printing the version twice when `manim --version` is called."
400
+ msgstr ""
401
+
402
+ #: ../../source/changelog/0.5.0-changelog.rst:177
403
+ msgid ":pr:`1086`: Fixed broken line spacing in :class:`~.Text`"
404
+ msgstr ""
405
+
406
+ #: ../../source/changelog/0.5.0-changelog.rst:177
407
+ msgid "The `line_spacing` kwarg was missing when creating :class:`Text` Mobjects; this adds it."
408
+ msgstr ""
409
+
410
+ #: ../../source/changelog/0.5.0-changelog.rst:180
411
+ msgid ":pr:`1083`: Corrected the shape of :class:`~.Torus`"
412
+ msgstr ""
413
+
414
+ #: ../../source/changelog/0.5.0-changelog.rst:180
415
+ msgid ":class:`Torus` draws a surface with an elliptical cross-section when `minor_radius` is different from 1. This PR ensures the cross-section is always a circle."
416
+ msgstr ""
417
+
418
+ #: ../../source/changelog/0.5.0-changelog.rst:183
419
+ msgid "Documentation-related changes"
420
+ msgstr ""
421
+
422
+ #: ../../source/changelog/0.5.0-changelog.rst:185
423
+ msgid ":pr:`1217`: Copyedited the document on testing in our documentation"
424
+ msgstr ""
425
+
426
+ #: ../../source/changelog/0.5.0-changelog.rst:188
427
+ msgid ":pr:`1206`: Added Docstrings to :class:`~.Mobject`"
428
+ msgstr ""
429
+
430
+ #: ../../source/changelog/0.5.0-changelog.rst:191
431
+ msgid ":pr:`1218`: Removed BezierSpline from the example gallery"
432
+ msgstr ""
433
+
434
+ #: ../../source/changelog/0.5.0-changelog.rst:194
435
+ msgid ":pr:`1219`: Updated Dockerfile (include dependencies for building documentation), moved documentation to main README"
436
+ msgstr ""
437
+
438
+ #: ../../source/changelog/0.5.0-changelog.rst:198
439
+ msgid ":pr:`1209`: Added :ref_methods: to the manim directive"
440
+ msgstr ""
441
+
442
+ #: ../../source/changelog/0.5.0-changelog.rst:198
443
+ msgid "This allows class methods to be linked in the documentation. Checkout the `example references <https://docs.manim.community/en/latest/examples.html#movingaround>`_ below the code to see how this is used!"
444
+ msgstr ""
445
+
446
+ #: ../../source/changelog/0.5.0-changelog.rst:200
447
+ msgid ":pr:`1204`: Added rotation example to example gallery"
448
+ msgstr ""
449
+
450
+ #: ../../source/changelog/0.5.0-changelog.rst:203
451
+ msgid ":pr:`1137`: Added GitHub Wiki pages on adding testing/documentation to Sphinx Docs"
452
+ msgstr ""
453
+
454
+ #: ../../source/changelog/0.5.0-changelog.rst:206
455
+ msgid ":pr:`1114`: Added examples for :class:`~.Ellipse`, :class:`~.Polygon`, :class:`~.RegularPolygon`, :class:`~.Triangle` and :class:`~.RoundedRectangle`"
456
+ msgstr ""
457
+
458
+ #: ../../source/changelog/0.5.0-changelog.rst:209
459
+ msgid ":pr:`1195`: Removed SmallDot from example"
460
+ msgstr ""
461
+
462
+ #: ../../source/changelog/0.5.0-changelog.rst:212
463
+ msgid ":pr:`1130`: Added pre-commit to run black and flake8, updated contributing documentation accordingly"
464
+ msgstr ""
465
+
466
+ #: ../../source/changelog/0.5.0-changelog.rst:216
467
+ msgid ":pr:`1138`: Moved previous version changelogs to separate files; Added a Script to generate future changelogs"
468
+ msgstr ""
469
+
470
+ #: ../../source/changelog/0.5.0-changelog.rst:216
471
+ msgid "This script quickly generates a changelog for whoever is making the release."
472
+ msgstr ""
473
+
474
+ #: ../../source/changelog/0.5.0-changelog.rst:218
475
+ msgid ":pr:`1190`: Added note in contributing guide to read the latest version of the documentation"
476
+ msgstr ""
477
+
478
+ #: ../../source/changelog/0.5.0-changelog.rst:221
479
+ msgid ":pr:`1188`: Added sounds example to docs"
480
+ msgstr ""
481
+
482
+ #: ../../source/changelog/0.5.0-changelog.rst:224
483
+ msgid ":pr:`1165`: Added documentation for installing Manim on Colab"
484
+ msgstr ""
485
+
486
+ #: ../../source/changelog/0.5.0-changelog.rst:227
487
+ msgid ":pr:`1128`: Added examples for :class:`~.DashedLine`, :class:`~.TangentLine`, :class:`~.Elbow`, :class:`~.Arrow`, :class:`~.Vector`, :class:`~.DoubleArrow`"
488
+ msgstr ""
489
+
490
+ #: ../../source/changelog/0.5.0-changelog.rst:230
491
+ msgid ":pr:`1177`: Replace links to the latest version of the documentation to the stable version"
492
+ msgstr ""
493
+
494
+ #: ../../source/changelog/0.5.0-changelog.rst:233
495
+ msgid ":pr:`1077`: Added details to :func:`~.Mobject.get_critical_point`"
496
+ msgstr ""
497
+
498
+ #: ../../source/changelog/0.5.0-changelog.rst:236
499
+ msgid ":pr:`1154`: Fixed some typing hints. (ints to floats)"
500
+ msgstr ""
501
+
502
+ #: ../../source/changelog/0.5.0-changelog.rst:239
503
+ msgid ":pr:`1036`: Added :class:`~.SurroundingRectangle` to the example gallery"
504
+ msgstr ""
505
+
506
+ #: ../../source/changelog/0.5.0-changelog.rst:242
507
+ msgid ":pr:`1103`: Added documentation and examples for Square, Dot, Circle and Rectangle"
508
+ msgstr ""
509
+
510
+ #: ../../source/changelog/0.5.0-changelog.rst:245
511
+ msgid ":pr:`1101`: Added documentation to :class:`~.Mobject`"
512
+ msgstr ""
513
+
514
+ #: ../../source/changelog/0.5.0-changelog.rst:249
515
+ msgid ":pr:`1088`: Added new svg files to documentation and imports"
516
+ msgstr ""
517
+
518
+ #: ../../source/changelog/0.5.0-changelog.rst:249
519
+ msgid "In particular, SVGPathMobject, VMobjectFromPathstring, and the style_utils functions to manim's namespace."
520
+ msgstr ""
521
+
522
+ #: ../../source/changelog/0.5.0-changelog.rst:252
523
+ msgid ":pr:`1076`: Improve documentation for GraphScene"
524
+ msgstr ""
525
+
526
+ #: ../../source/changelog/0.5.0-changelog.rst:252
527
+ msgid "Updated `coords_to_point` and `point_to_coords` under `manim/scene/graph_scene.py` as the dosctring of each function confusingly described the opposite of what it is supposed to do."
528
+ msgstr ""
529
+
530
+ #: ../../source/changelog/0.5.0-changelog.rst:255
531
+ msgid "Changes concerning the testing system"
532
+ msgstr ""
533
+
534
+ #: ../../source/changelog/0.5.0-changelog.rst:257
535
+ msgid ":pr:`1160`: Enable CI testing for OpenGL"
536
+ msgstr ""
537
+
538
+ #: ../../source/changelog/0.5.0-changelog.rst:261
539
+ msgid ":pr:`1100`: Rewrote test cases to use sys.executable in the command instead of \"python\""
540
+ msgstr ""
541
+
542
+ #: ../../source/changelog/0.5.0-changelog.rst:261
543
+ msgid "Tests would fail due to `capture()` not spawning a subshell in the correct environment, so when python was called, the test would be unable to find necessary packages."
544
+ msgstr ""
545
+
546
+ #: ../../source/changelog/0.5.0-changelog.rst:263
547
+ msgid ":pr:`1079`: Removed the hardcoded value, `manim`, in `test_version.py`"
548
+ msgstr ""
549
+
550
+ #: ../../source/changelog/0.5.0-changelog.rst:267
551
+ msgid "Changes to our development infrastructure"
552
+ msgstr ""
553
+
554
+ #: ../../source/changelog/0.5.0-changelog.rst:269
555
+ msgid ":pr:`1213`: Updated TinyTex dependencies"
556
+ msgstr ""
557
+
558
+ #: ../../source/changelog/0.5.0-changelog.rst:272
559
+ msgid ":pr:`1187`: Add CodeCov to Github Workflow"
560
+ msgstr ""
561
+
562
+ #: ../../source/changelog/0.5.0-changelog.rst:275
563
+ msgid ":pr:`1166`: CI: Use poetry's cache dir rather than pip"
564
+ msgstr ""
565
+
566
+ #: ../../source/changelog/0.5.0-changelog.rst:281
567
+ msgid ":pr:`1071`: Enable pytest-cov based code coverage"
568
+ msgstr ""
569
+
570
+ #: ../../source/changelog/0.5.0-changelog.rst:279
571
+ msgid "Include pytest-cov as a python module as part of developer dependencies"
572
+ msgstr ""
573
+
574
+ #: ../../source/changelog/0.5.0-changelog.rst:280
575
+ msgid "In updating poetry to include pytest-cov, manimpango moved from version 0.2.3 to 0.2.4, and libpango1.0-dev needed to be installed in Ubuntu."
576
+ msgstr ""
577
+
578
+ #: ../../source/changelog/0.5.0-changelog.rst:281
579
+ msgid "Add to the CI workflow (`ci.yml`) to create and upload test coverage."
580
+ msgstr ""
581
+
582
+ #: ../../source/changelog/0.5.0-changelog.rst:283
583
+ msgid ":pr:`1073`: Removed \"one line summary\" from PULL_REQUEST_TEMPLATE.md"
584
+ msgstr ""
585
+
586
+ #: ../../source/changelog/0.5.0-changelog.rst:287
587
+ msgid "Code quality improvements and similar refactors"
588
+ msgstr ""
589
+
590
+ #: ../../source/changelog/0.5.0-changelog.rst:289
591
+ msgid ":pr:`1167`: Merge :class:`~.OpenGLMobject` and :class:`~.Mobject`"
592
+ msgstr ""
593
+
594
+ #: ../../source/changelog/0.5.0-changelog.rst:292
595
+ msgid ":pr:`1164`: Fixed single PEP8 style in `cairo_renderer.py`"
596
+ msgstr ""
597
+
598
+ #: ../../source/changelog/0.5.0-changelog.rst:295
599
+ msgid ":pr:`1140`: Flake8 Compat & Code Cleanup"
600
+ msgstr ""
601
+
602
+ #: ../../source/changelog/0.5.0-changelog.rst:305
603
+ msgid ":pr:`1019`: Refactored :meth:`~.Scene.play`"
604
+ msgstr ""
605
+
606
+ #: ../../source/changelog/0.5.0-changelog.rst:299
607
+ msgid "Removed the _**three**_ decorators of :meth:`~.Scene.play`, in particular: caching logic and file writer logic are now included within :meth:`~.Scene.play` (it wasn't possible before, because `scene.wait` and `scene.play` were two different things)."
608
+ msgstr ""
609
+
610
+ #: ../../source/changelog/0.5.0-changelog.rst:300
611
+ msgid "Added `is_static_wait` attributes to Wait. (<=> if wait is a frozen frame)."
612
+ msgstr ""
613
+
614
+ #: ../../source/changelog/0.5.0-changelog.rst:301
615
+ msgid "Renamed and moved `scene.add_static_frame` to `renderer.freeze_current_frame`."
616
+ msgstr ""
617
+
618
+ #: ../../source/changelog/0.5.0-changelog.rst:302
619
+ msgid "Now when calling play without animation, it raises `ValueError` instead of just a warning."
620
+ msgstr ""
621
+
622
+ #: ../../source/changelog/0.5.0-changelog.rst:303
623
+ msgid "Fixed :pr:`874` by modifying `renderer.update_skipping_status`"
624
+ msgstr ""
625
+
626
+ #: ../../source/changelog/0.5.0-changelog.rst:304
627
+ msgid "`renderer` starts the animation with `scene.begin_animations` (`scene.compile_animation_data` used to do this)"
628
+ msgstr ""
629
+
630
+ #: ../../source/changelog/0.5.0-changelog.rst:305
631
+ msgid "The run time and the time progression generation is now done in `scene.play_internal` although it'd make more sense that renderer processes it later."
632
+ msgstr ""
633
+
634
+
data/docs/i18n/gettext/changelog/0.6.0-changelog.pot ADDED
@@ -0,0 +1,937 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.6.0-changelog.rst:3
10
+ msgid "v0.6.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.6.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.6.0-changelog.rst:5
18
+ msgid "May 02, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.6.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.6.0-changelog.rst:10
26
+ msgid "A total of 40 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.6.0-changelog.rst:14
30
+ #: ../../source/changelog/0.6.0-changelog.rst:47
31
+ msgid "Abel Aebker"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.6.0-changelog.rst:15
35
+ #: ../../source/changelog/0.6.0-changelog.rst:48
36
+ msgid "Abhijith Muthyala"
37
+ msgstr ""
38
+
39
+ #: ../../source/changelog/0.6.0-changelog.rst:16
40
+ msgid "Adam Ryczkowski +"
41
+ msgstr ""
42
+
43
+ #: ../../source/changelog/0.6.0-changelog.rst:17
44
+ msgid "Alex Lembcke +"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.6.0-changelog.rst:18
48
+ #: ../../source/changelog/0.6.0-changelog.rst:51
49
+ msgid "Anton Ballmaier"
50
+ msgstr ""
51
+
52
+ #: ../../source/changelog/0.6.0-changelog.rst:19
53
+ #: ../../source/changelog/0.6.0-changelog.rst:52
54
+ msgid "Aron"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.6.0-changelog.rst:20
58
+ #: ../../source/changelog/0.6.0-changelog.rst:53
59
+ msgid "Benjamin Hackl"
60
+ msgstr ""
61
+
62
+ #: ../../source/changelog/0.6.0-changelog.rst:21
63
+ #: ../../source/changelog/0.6.0-changelog.rst:54
64
+ msgid "Darylgolden"
65
+ msgstr ""
66
+
67
+ #: ../../source/changelog/0.6.0-changelog.rst:22
68
+ msgid "Deniz Hasler +"
69
+ msgstr ""
70
+
71
+ #: ../../source/changelog/0.6.0-changelog.rst:23
72
+ #: ../../source/changelog/0.6.0-changelog.rst:56
73
+ msgid "Devin Neal"
74
+ msgstr ""
75
+
76
+ #: ../../source/changelog/0.6.0-changelog.rst:24
77
+ msgid "Elisha Hollander +"
78
+ msgstr ""
79
+
80
+ #: ../../source/changelog/0.6.0-changelog.rst:25
81
+ msgid "Erik Tastepe +"
82
+ msgstr ""
83
+
84
+ #: ../../source/changelog/0.6.0-changelog.rst:26
85
+ #: ../../source/changelog/0.6.0-changelog.rst:60
86
+ msgid "Jan-Hendrik Müller"
87
+ msgstr ""
88
+
89
+ #: ../../source/changelog/0.6.0-changelog.rst:27
90
+ #: ../../source/changelog/0.6.0-changelog.rst:61
91
+ msgid "Jason Villanueva"
92
+ msgstr ""
93
+
94
+ #: ../../source/changelog/0.6.0-changelog.rst:28
95
+ #: ../../source/changelog/0.6.0-changelog.rst:63
96
+ msgid "Laith Bahodi"
97
+ msgstr ""
98
+
99
+ #: ../../source/changelog/0.6.0-changelog.rst:29
100
+ #: ../../source/changelog/0.6.0-changelog.rst:64
101
+ msgid "Mark Miller"
102
+ msgstr ""
103
+
104
+ #: ../../source/changelog/0.6.0-changelog.rst:30
105
+ #: ../../source/changelog/0.6.0-changelog.rst:65
106
+ msgid "Mohammad Al-Fetyani"
107
+ msgstr ""
108
+
109
+ #: ../../source/changelog/0.6.0-changelog.rst:31
110
+ #: ../../source/changelog/0.6.0-changelog.rst:66
111
+ msgid "Naveen M K"
112
+ msgstr ""
113
+
114
+ #: ../../source/changelog/0.6.0-changelog.rst:32
115
+ msgid "Newell Jensen +"
116
+ msgstr ""
117
+
118
+ #: ../../source/changelog/0.6.0-changelog.rst:33
119
+ msgid "Nidhal Baccouri +"
120
+ msgstr ""
121
+
122
+ #: ../../source/changelog/0.6.0-changelog.rst:34
123
+ msgid "Nikhil Garuda +"
124
+ msgstr ""
125
+
126
+ #: ../../source/changelog/0.6.0-changelog.rst:35
127
+ msgid "Peilonrayz +"
128
+ msgstr ""
129
+
130
+ #: ../../source/changelog/0.6.0-changelog.rst:36
131
+ #: ../../source/changelog/0.6.0-changelog.rst:71
132
+ msgid "Raghav Goel"
133
+ msgstr ""
134
+
135
+ #: ../../source/changelog/0.6.0-changelog.rst:37
136
+ msgid "Ricky Chon +"
137
+ msgstr ""
138
+
139
+ #: ../../source/changelog/0.6.0-changelog.rst:38
140
+ #: ../../source/changelog/0.6.0-changelog.rst:73
141
+ msgid "friedkeenan"
142
+ msgstr ""
143
+
144
+ #: ../../source/changelog/0.6.0-changelog.rst:39
145
+ msgid "kamilczerwinski22 +"
146
+ msgstr ""
147
+
148
+ #: ../../source/changelog/0.6.0-changelog.rst:40
149
+ #: ../../source/changelog/0.6.0-changelog.rst:74
150
+ msgid "sparshg"
151
+ msgstr ""
152
+
153
+ #: ../../source/changelog/0.6.0-changelog.rst:43
154
+ msgid "The patches included in this release have been reviewed by the following contributors."
155
+ msgstr ""
156
+
157
+ #: ../../source/changelog/0.6.0-changelog.rst:46
158
+ msgid "Aathish Sivasubrahmanian"
159
+ msgstr ""
160
+
161
+ #: ../../source/changelog/0.6.0-changelog.rst:49
162
+ msgid "Adam Ryczkowski"
163
+ msgstr ""
164
+
165
+ #: ../../source/changelog/0.6.0-changelog.rst:50
166
+ msgid "Alex Lembcke"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.6.0-changelog.rst:55
170
+ msgid "Deniz Hasler"
171
+ msgstr ""
172
+
173
+ #: ../../source/changelog/0.6.0-changelog.rst:57
174
+ msgid "Elisha Hollander"
175
+ msgstr ""
176
+
177
+ #: ../../source/changelog/0.6.0-changelog.rst:58
178
+ msgid "GameDungeon"
179
+ msgstr ""
180
+
181
+ #: ../../source/changelog/0.6.0-changelog.rst:59
182
+ msgid "Hugues Devimeux"
183
+ msgstr ""
184
+
185
+ #: ../../source/changelog/0.6.0-changelog.rst:62
186
+ msgid "KingWampy"
187
+ msgstr ""
188
+
189
+ #: ../../source/changelog/0.6.0-changelog.rst:67
190
+ msgid "Nidhal Baccouri"
191
+ msgstr ""
192
+
193
+ #: ../../source/changelog/0.6.0-changelog.rst:68
194
+ msgid "Nikhil Garuda"
195
+ msgstr ""
196
+
197
+ #: ../../source/changelog/0.6.0-changelog.rst:69
198
+ msgid "Oliver"
199
+ msgstr ""
200
+
201
+ #: ../../source/changelog/0.6.0-changelog.rst:70
202
+ msgid "Philipp Imhof"
203
+ msgstr ""
204
+
205
+ #: ../../source/changelog/0.6.0-changelog.rst:72
206
+ msgid "Ricky Chon"
207
+ msgstr ""
208
+
209
+ #: ../../source/changelog/0.6.0-changelog.rst:77
210
+ msgid "Pull requests merged"
211
+ msgstr ""
212
+
213
+ #: ../../source/changelog/0.6.0-changelog.rst:79
214
+ msgid "A total of 112 pull requests were merged for this release."
215
+ msgstr ""
216
+
217
+ #: ../../source/changelog/0.6.0-changelog.rst:82
218
+ msgid "Breaking changes"
219
+ msgstr ""
220
+
221
+ #: ../../source/changelog/0.6.0-changelog.rst:85
222
+ msgid ":pr:`1347`: Restructure vector_field module and add documentation"
223
+ msgstr ""
224
+
225
+ #: ../../source/changelog/0.6.0-changelog.rst:85
226
+ msgid ":class`~.VectorField` is renamed to :class:`~.ArrowVectorField` and a new class :class:`~.VectorField` is added as a superclass for :class:`~.ArrowVectorField` and :class:`~.StreamLines`. :class:`~.AnimatedStreamLines` is removed. It's functionality is moved to :class:`~.StreamLines`. Added a lot of new options when working with vector fields. :class:`~.ShowPassingFlashWithThinningStrokeWidth` was moved to the indication module."
227
+ msgstr ""
228
+
229
+ #: ../../source/changelog/0.6.0-changelog.rst:91
230
+ msgid ":pr:`1161`: Upgrades to CoordinateSystem and graphing."
231
+ msgstr ""
232
+
233
+ #: ../../source/changelog/0.6.0-changelog.rst:88
234
+ msgid "Breaking changes were introduced to :class:`~.Axes`, :class:`~.ThreeDAxes`, :class:`~.NumberPlane` and :class:`~.NumberLine` All the above now use lists to construct their ranges as opposed to explicitly defining these values. `x_range` has replaced `x_min`, `x_max` and defining the step is much easier with `x_step` --> ``x_range`` : ``[x_min, x_max, x_step]``. There were also many upgrades to these classes which improve their functionality and appearance."
235
+ msgstr ""
236
+
237
+ #: ../../source/changelog/0.6.0-changelog.rst:91
238
+ msgid "``NumberLineOld`` was introduced to continue support for :class:`~.GraphScene`, although we are moving away from GraphScene and intend to deprecate it in a future release."
239
+ msgstr ""
240
+
241
+ #: ../../source/changelog/0.6.0-changelog.rst:107
242
+ msgid ":pr:`1013`: Refactored the Command Line Interface to use Click instead of Argparse"
243
+ msgstr ""
244
+
245
+ #: ../../source/changelog/0.6.0-changelog.rst:94
246
+ msgid "This change breaks the CLI API to organize the structure of Manim Community's commands, options, and arguments."
247
+ msgstr ""
248
+
249
+ #: ../../source/changelog/0.6.0-changelog.rst:96
250
+ msgid "To be more in line with POSIX compliant CLI conventions, options for commands are given *BEFORE* their arguments. In Argparse: ``manim basic.py -p -ql`` With Click: ``manim -p -ql basic.py``"
251
+ msgstr ""
252
+
253
+ #: ../../source/changelog/0.6.0-changelog.rst:100
254
+ msgid "Although this is primarily a refactor and most of the common options are still there, some options have been added/removed. Use the ``manim`` command's ``--help`` option, or simply run the command without providing options/arguments to view the help page with the full list of subcommands/options/arguments."
255
+ msgstr ""
256
+
257
+ #: ../../source/changelog/0.6.0-changelog.rst:102
258
+ msgid "Added a ``--fps``/``--frame_rate`` option which allows for custom fps that don't have to be integer (i.e. 29.97, 23.98, etc.). Users no longer have to specify the FPS from within a config file. Additionally, the ``--webgl_renderer_fps`` option has been removed. Use ``--fps`` or ``--frame_rate`` instead."
259
+ msgstr ""
260
+
261
+ #: ../../source/changelog/0.6.0-changelog.rst:103
262
+ msgid "Added a ``--renderer`` option which you can use to select your choice of renderer (e.g. ``--renderer=opengl``). There are currently *THREE* renderers to choose from!"
263
+ msgstr ""
264
+
265
+ #: ../../source/changelog/0.6.0-changelog.rst:104
266
+ msgid "Removed the ``--background_color`` option. Reassigned the ``--background_color`` option's shorthand ``-c`` to ``--config_file``."
267
+ msgstr ""
268
+
269
+ #: ../../source/changelog/0.6.0-changelog.rst:105
270
+ msgid "Removed the ``--leave_progress_bars`` option. Use ``--progress_bars=leave`` instead."
271
+ msgstr ""
272
+
273
+ #: ../../source/changelog/0.6.0-changelog.rst:106
274
+ msgid "Removed the deprecated render quality flags, in particular: ``-l``, ``-m``, ``-h``, ``-k``."
275
+ msgstr ""
276
+
277
+ #: ../../source/changelog/0.6.0-changelog.rst:107
278
+ msgid "Removed the ``--sound`` option. It lost support long ago with the removal of SoX."
279
+ msgstr ""
280
+
281
+ #: ../../source/changelog/0.6.0-changelog.rst:110
282
+ msgid "Deprecated classes and functions"
283
+ msgstr ""
284
+
285
+ #: ../../source/changelog/0.6.0-changelog.rst:116
286
+ msgid ":pr:`1431`: Fix CLI bugs"
287
+ msgstr ""
288
+
289
+ #: ../../source/changelog/0.6.0-changelog.rst:113
290
+ msgid "Fixed conflict with ``-f`` which was previously assigned to both ``--show_in_file_browser`` and ``--format`` by removing ``-f`` from ``--format``. A warning is issued that ``-f`` will soon move to ``--format``."
291
+ msgstr ""
292
+
293
+ #: ../../source/changelog/0.6.0-changelog.rst:114
294
+ msgid "Added back in flags to render the files as gif/last frame. Deprecated them in favor of ``--format``."
295
+ msgstr ""
296
+
297
+ #: ../../source/changelog/0.6.0-changelog.rst:115
298
+ msgid "Fixed the broken ``--output_file``/``-o`` option."
299
+ msgstr ""
300
+
301
+ #: ../../source/changelog/0.6.0-changelog.rst:116
302
+ msgid "Fixed an issue where the ``-qh`` quality option was interpreted as ``-q`` ``-h``, prompting the help page."
303
+ msgstr ""
304
+
305
+ #: ../../source/changelog/0.6.0-changelog.rst:118
306
+ msgid ":pr:`1354`: Refactored a few functions in space_ops.py, deprecated :func:`~.angle_between`"
307
+ msgstr ""
308
+
309
+ #: ../../source/changelog/0.6.0-changelog.rst:122
310
+ msgid ":pr:`1370`: Remove TexMobject and TextMobject"
311
+ msgstr ""
312
+
313
+ #: ../../source/changelog/0.6.0-changelog.rst:122
314
+ msgid "TexMobject and TextMobject have been deprecated for a while, they are now fully removed. Use Tex or MathTex instead."
315
+ msgstr ""
316
+
317
+ #: ../../source/changelog/0.6.0-changelog.rst:124
318
+ msgid ":pr:`1349`: Removed the deprecated ``SmallDot`` mobject"
319
+ msgstr ""
320
+
321
+ #: ../../source/changelog/0.6.0-changelog.rst:127
322
+ msgid ":pr:`1259`: Removed deprecated CairoText class"
323
+ msgstr ""
324
+
325
+ #: ../../source/changelog/0.6.0-changelog.rst:130
326
+ msgid "New features"
327
+ msgstr ""
328
+
329
+ #: ../../source/changelog/0.6.0-changelog.rst:132
330
+ msgid ":pr:`1386`: Implement utility methods for adding/removing vertices and edges of graphs; allow custom mobjects as vertices"
331
+ msgstr ""
332
+
333
+ #: ../../source/changelog/0.6.0-changelog.rst:136
334
+ msgid ":pr:`1385`: Added :meth:`~.Axes.get_line_graph` for plotting a line graph"
335
+ msgstr ""
336
+
337
+ #: ../../source/changelog/0.6.0-changelog.rst:136
338
+ msgid "Added :meth:`~.Axes.get_line_graph` that returns a line graph from lists of points along x, y and z (optional) axes."
339
+ msgstr ""
340
+
341
+ #: ../../source/changelog/0.6.0-changelog.rst:139
342
+ msgid ":pr:`1381`: Hot reloading for the OpenGL renderer"
343
+ msgstr ""
344
+
345
+ #: ../../source/changelog/0.6.0-changelog.rst:139
346
+ msgid "Rerun scene when the input file is modified"
347
+ msgstr ""
348
+
349
+ #: ../../source/changelog/0.6.0-changelog.rst:148
350
+ msgid ":pr:`1383`: Overhaul of the :mod:`~.animation.indication` module interfaces"
351
+ msgstr ""
352
+
353
+ #: ../../source/changelog/0.6.0-changelog.rst:142
354
+ msgid "Added class `Circumscribe` combining functionality of `CircleIndicate`, `AnimationOnSurroundingRectangle`, `ShowPassingFlashAround`, `ShowCreationThenDestructionAround`, `ShowCreationThenFadeAround`, which have all been deprecated."
355
+ msgstr ""
356
+
357
+ #: ../../source/changelog/0.6.0-changelog.rst:143
358
+ msgid "Changes to `Flash`: `flash_radius` parameter now defines inner radius of the animation. Added new parameter `time_width`."
359
+ msgstr ""
360
+
361
+ #: ../../source/changelog/0.6.0-changelog.rst:144
362
+ msgid "`ShowCreationThenDestruction` has been deprecated in favor of `ShowPassingFlash`"
363
+ msgstr ""
364
+
365
+ #: ../../source/changelog/0.6.0-changelog.rst:145
366
+ msgid "Changes to `ApplyWave`: New implementation giving more flexibility with new parameters `wave_func`, `time_width` and`ripples`"
367
+ msgstr ""
368
+
369
+ #: ../../source/changelog/0.6.0-changelog.rst:146
370
+ msgid "Renamed `WiggleOutThenIn` to `Wiggle` (`WiggleOutThenIn` has been deprecated)"
371
+ msgstr ""
372
+
373
+ #: ../../source/changelog/0.6.0-changelog.rst:147
374
+ msgid "Added documentation and examples to all the above"
375
+ msgstr ""
376
+
377
+ #: ../../source/changelog/0.6.0-changelog.rst:148
378
+ msgid "Other minor enhancements and bug-fixes"
379
+ msgstr ""
380
+
381
+ #: ../../source/changelog/0.6.0-changelog.rst:150
382
+ msgid ":pr:`1348`: Added :class:`~.Polyhedron`, and platonic solids :class:`~.Tetrahedron`, :class:`~.Octahedron`, :class:`~.Icosahedron` and :class:`~.Dodecahedron`"
383
+ msgstr ""
384
+
385
+ #: ../../source/changelog/0.6.0-changelog.rst:154
386
+ msgid ":pr:`1285`: Add :meth:`~.Scene.interactive_embed` for OpenGL rendering"
387
+ msgstr ""
388
+
389
+ #: ../../source/changelog/0.6.0-changelog.rst:154
390
+ msgid ":meth:`~.Scene.interactive_embed` allows interaction with Scene via mouse and keyboard as well as dynamic commands via an iPython terminal."
391
+ msgstr ""
392
+
393
+ #: ../../source/changelog/0.6.0-changelog.rst:157
394
+ msgid ":pr:`1261`: Render image automatically if no animation is played in a scene"
395
+ msgstr ""
396
+
397
+ #: ../../source/changelog/0.6.0-changelog.rst:157
398
+ msgid "If no animations in scene and asked to preview/render a video, preview/render an image instead of raising a confusing error."
399
+ msgstr ""
400
+
401
+ #: ../../source/changelog/0.6.0-changelog.rst:160
402
+ msgid ":pr:`1200`: Add text and SVG mobjects to OpenGL"
403
+ msgstr ""
404
+
405
+ #: ../../source/changelog/0.6.0-changelog.rst:160
406
+ msgid "Added OpenGL-compatible text and SVG mobjects"
407
+ msgstr ""
408
+
409
+ #: ../../source/changelog/0.6.0-changelog.rst:163
410
+ msgid "Enhancements"
411
+ msgstr ""
412
+
413
+ #: ../../source/changelog/0.6.0-changelog.rst:166
414
+ msgid ":pr:`1398`: Fix and enhance `Mobject.arrange_in_grid`"
415
+ msgstr ""
416
+
417
+ #: ../../source/changelog/0.6.0-changelog.rst:166
418
+ msgid "`arrange_in_grid` now actually arranges submobjects in a grid. Added new parameters `buff`, `cell_alignment`, `row_alignments`, `col_alignments`, `row_heights`, `col_widths`, `flow_order`."
419
+ msgstr ""
420
+
421
+ #: ../../source/changelog/0.6.0-changelog.rst:168
422
+ msgid ":pr:`1407`: Fix bug and rename :meth:`vector_coordinate_label` to :meth:`~.Vector.coordinate_label` and move it to :class:`geometry.py`"
423
+ msgstr ""
424
+
425
+ #: ../../source/changelog/0.6.0-changelog.rst:171
426
+ msgid ":pr:`1380`: Allow image objects as background images"
427
+ msgstr ""
428
+
429
+ #: ../../source/changelog/0.6.0-changelog.rst:175
430
+ msgid ":pr:`1391`: Add `path_arc` support to `.animate` syntax"
431
+ msgstr ""
432
+
433
+ #: ../../source/changelog/0.6.0-changelog.rst:175
434
+ msgid "The parameter `path_arc` of :class:`~.Transform` now works with the `.animate` syntax"
435
+ msgstr ""
436
+
437
+ #: ../../source/changelog/0.6.0-changelog.rst:178
438
+ msgid ":pr:`1364`: Added :meth:`~.Mobject.match_points`"
439
+ msgstr ""
440
+
441
+ #: ../../source/changelog/0.6.0-changelog.rst:178
442
+ msgid "Added :func:`~.Mobject.match_points`, which transforms the points, positions and submobjects of a Mobject to match that of the other while keeping style unchanged."
443
+ msgstr ""
444
+
445
+ #: ../../source/changelog/0.6.0-changelog.rst:180
446
+ msgid ":pr:`1363`: Change of TeX compiler and output file format"
447
+ msgstr ""
448
+
449
+ #: ../../source/changelog/0.6.0-changelog.rst:184
450
+ msgid ":pr:`1359`: Make FILE a required argument"
451
+ msgstr ""
452
+
453
+ #: ../../source/changelog/0.6.0-changelog.rst:184
454
+ msgid "Make `FILE` a required argument, `manim/cli/render/commands.py`:L30"
455
+ msgstr ""
456
+
457
+ #: ../../source/changelog/0.6.0-changelog.rst:186
458
+ msgid ":pr:`1304`: Improve Tex string splitting at double braces: only split for double brace groups"
459
+ msgstr ""
460
+
461
+ #: ../../source/changelog/0.6.0-changelog.rst:190
462
+ msgid ":pr:`1340`: Add OpenGL support to the new transform animations"
463
+ msgstr ""
464
+
465
+ #: ../../source/changelog/0.6.0-changelog.rst:190
466
+ msgid "Made `FadeTransform`, `FadeTransformPieces`, `TransformMatchingShapes` and `TransformMatchingTex` compatible with OpenGL rendering."
467
+ msgstr ""
468
+
469
+ #: ../../source/changelog/0.6.0-changelog.rst:193
470
+ msgid ":pr:`1343`: Make TexTemplate() simple, but keep Tex()'s default template"
471
+ msgstr ""
472
+
473
+ #: ../../source/changelog/0.6.0-changelog.rst:193
474
+ msgid "TexTemplate() now returns a simple tex template."
475
+ msgstr ""
476
+
477
+ #: ../../source/changelog/0.6.0-changelog.rst:195
478
+ msgid ":pr:`1321`: Add OpenGL support to :class:`~.AnimationGroup`"
479
+ msgstr ""
480
+
481
+ #: ../../source/changelog/0.6.0-changelog.rst:200
482
+ msgid ":pr:`1302`: Raise appropriate errors in :meth:`~.VMobject.point_from_proportion`"
483
+ msgstr ""
484
+
485
+ #: ../../source/changelog/0.6.0-changelog.rst:199
486
+ msgid "Raise an error if the ``alpha`` argument is not between 0 and 1."
487
+ msgstr ""
488
+
489
+ #: ../../source/changelog/0.6.0-changelog.rst:200
490
+ msgid "Raise an error if the :class:`~.VMobject` has no points."
491
+ msgstr ""
492
+
493
+ #: ../../source/changelog/0.6.0-changelog.rst:202
494
+ msgid ":pr:`1315`: Fix performance issues with :meth:`~.VMobject.get_arc_length`, stemming from :pr:`1274`"
495
+ msgstr ""
496
+
497
+ #: ../../source/changelog/0.6.0-changelog.rst:205
498
+ msgid ":pr:`1320`: Add `jpeg` extension to the default image extensions"
499
+ msgstr ""
500
+
501
+ #: ../../source/changelog/0.6.0-changelog.rst:209
502
+ msgid ":pr:`1234`: Added new method :meth:`~.Mobject.get_midpoint`"
503
+ msgstr ""
504
+
505
+ #: ../../source/changelog/0.6.0-changelog.rst:209
506
+ msgid "Implemented :meth:`~.Mobject.get_midpoint` to return the point that is the middle of the stroke line of an mobject."
507
+ msgstr ""
508
+
509
+ #: ../../source/changelog/0.6.0-changelog.rst:211
510
+ msgid ":pr:`1237`: Notify user if they are using an outdated version of Manim"
511
+ msgstr ""
512
+
513
+ #: ../../source/changelog/0.6.0-changelog.rst:214
514
+ msgid ":pr:`1308`: Improved :class:`~.ManimBanner` animations"
515
+ msgstr ""
516
+
517
+ #: ../../source/changelog/0.6.0-changelog.rst:217
518
+ msgid ":pr:`1275`: Add SVG <line> element support to :class:`~.SVGMobject`"
519
+ msgstr ""
520
+
521
+ #: ../../source/changelog/0.6.0-changelog.rst:220
522
+ msgid ":pr:`1238`: Add parameter ``about_point`` for :meth:`~.Mobject.rotate`"
523
+ msgstr ""
524
+
525
+ #: ../../source/changelog/0.6.0-changelog.rst:223
526
+ msgid ":pr:`1260`: Change Brace from Tex to SVG (#1258)"
527
+ msgstr ""
528
+
529
+ #: ../../source/changelog/0.6.0-changelog.rst:226
530
+ msgid ":pr:`1122`: Support for specifying the interpolation algorithms for individual ImageMobjects"
531
+ msgstr ""
532
+
533
+ #: ../../source/changelog/0.6.0-changelog.rst:229
534
+ msgid ":pr:`1283`: Set default value of keyword ``random_seed`` in :class:`~.Scene` to ``None`` (was 0 and fixed before)"
535
+ msgstr ""
536
+
537
+ #: ../../source/changelog/0.6.0-changelog.rst:236
538
+ msgid ":pr:`1220`: Added sanity checks to :meth:`~.Mobject.add_to_back` for Mobjects"
539
+ msgstr ""
540
+
541
+ #: ../../source/changelog/0.6.0-changelog.rst:233
542
+ msgid "Add Mobject `add_to_back` sanity checks: - Raises ValueError when Mobject tries to add itself - Raises TypeError when a non-Mobject is added - Filters out incoming duplicate submobjects if at least one instance of that submobject exists in the list"
543
+ msgstr ""
544
+
545
+ #: ../../source/changelog/0.6.0-changelog.rst:239
546
+ msgid ":pr:`1249`: Set corners of :class:`~.Rectangle` in counterclockwise direction"
547
+ msgstr ""
548
+
549
+ #: ../../source/changelog/0.6.0-changelog.rst:239
550
+ msgid "This improves the look of transformations between rectangles and other simple mobjects."
551
+ msgstr ""
552
+
553
+ #: ../../source/changelog/0.6.0-changelog.rst:241
554
+ msgid ":pr:`1248`: Add Copy function to TexTemplate"
555
+ msgstr ""
556
+
557
+ #: ../../source/changelog/0.6.0-changelog.rst:245
558
+ msgid "Fixed bugs"
559
+ msgstr ""
560
+
561
+ #: ../../source/changelog/0.6.0-changelog.rst:247
562
+ msgid ":pr:`1368`: Added a check to ensure checking for the latest version was successful"
563
+ msgstr ""
564
+
565
+ #: ../../source/changelog/0.6.0-changelog.rst:251
566
+ msgid ":pr:`1413`: Prevent duplication of the same mobject when adding to submobjects via :meth:`~.Mobject.add_to_back`"
567
+ msgstr ""
568
+
569
+ #: ../../source/changelog/0.6.0-changelog.rst:251
570
+ msgid "Fixes #1412"
571
+ msgstr ""
572
+
573
+ #: ../../source/changelog/0.6.0-changelog.rst:253
574
+ msgid ":pr:`1395`: SVG transforms now handle exponent notation (6.02e23)"
575
+ msgstr ""
576
+
577
+ #: ../../source/changelog/0.6.0-changelog.rst:256
578
+ msgid ":pr:`1355`: Rewrite `put_start_and_end_on` to work in 3D"
579
+ msgstr ""
580
+
581
+ #: ../../source/changelog/0.6.0-changelog.rst:259
582
+ msgid ":pr:`1346`: Fixed errors introduced by stray print in :class:`~.MathTex`"
583
+ msgstr ""
584
+
585
+ #: ../../source/changelog/0.6.0-changelog.rst:262
586
+ msgid ":pr:`1305`: Automatically remove long tick marks not within the range of the :class:`~NumberLine`"
587
+ msgstr ""
588
+
589
+ #: ../../source/changelog/0.6.0-changelog.rst:265
590
+ msgid ":pr:`1296`: Fix random pipeline TeX failures"
591
+ msgstr ""
592
+
593
+ #: ../../source/changelog/0.6.0-changelog.rst:270
594
+ msgid ":pr:`1274`: Fix :meth:`~.VMobject.point_from_proportion` to account for the length of curves."
595
+ msgstr ""
596
+
597
+ #: ../../source/changelog/0.6.0-changelog.rst:269
598
+ msgid "Add :meth:`~.VMobject.get_nth_curve_function_with_length` and associated functions."
599
+ msgstr ""
600
+
601
+ #: ../../source/changelog/0.6.0-changelog.rst:270
602
+ msgid "Change :meth:`~.VMobject.point_from_proportion` to use these functions to account for curve length."
603
+ msgstr ""
604
+
605
+ #: ../../source/changelog/0.6.0-changelog.rst:273
606
+ msgid "Documentation-related changes"
607
+ msgstr ""
608
+
609
+ #: ../../source/changelog/0.6.0-changelog.rst:277
610
+ msgid ":pr:`1430`: Un-deprecated GraphScene (will be deprecated later), fixed an old-style call to NumberPlane"
611
+ msgstr ""
612
+
613
+ #: ../../source/changelog/0.6.0-changelog.rst:276
614
+ msgid "More work is required in order to fully replace `GraphScene` via `Axes`, thus `GraphScene` is not deprecated yet."
615
+ msgstr ""
616
+
617
+ #: ../../source/changelog/0.6.0-changelog.rst:277
618
+ msgid "Fixed one example in which the old `NumberPlane` syntax was used."
619
+ msgstr ""
620
+
621
+ #: ../../source/changelog/0.6.0-changelog.rst:279
622
+ msgid ":pr:`1425`: Added a \"How to Cite Manim\" section to the Readme"
623
+ msgstr ""
624
+
625
+ #: ../../source/changelog/0.6.0-changelog.rst:283
626
+ msgid ":pr:`1387`: Added Guide to Contribute Examples from GitHub Wiki to Documentation"
627
+ msgstr ""
628
+
629
+ #: ../../source/changelog/0.6.0-changelog.rst:283
630
+ msgid "Added a Guide"
631
+ msgstr ""
632
+
633
+ #: ../../source/changelog/0.6.0-changelog.rst:285
634
+ msgid ":pr:`1424`: Fixed all current docbuild warnings"
635
+ msgstr ""
636
+
637
+ #: ../../source/changelog/0.6.0-changelog.rst:288
638
+ msgid ":pr:`1389`: Adding Admonitions Tutorial to docs"
639
+ msgstr ""
640
+
641
+ #: ../../source/changelog/0.6.0-changelog.rst:291
642
+ msgid ":pr:`1341`: Reduce complexity of ThreeDSurfacePlot example"
643
+ msgstr ""
644
+
645
+ #: ../../source/changelog/0.6.0-changelog.rst:294
646
+ msgid ":pr:`1362`: Quick reference to modules"
647
+ msgstr ""
648
+
649
+ #: ../../source/changelog/0.6.0-changelog.rst:298
650
+ msgid ":pr:`1376`: Add flake8 and isort in docs"
651
+ msgstr ""
652
+
653
+ #: ../../source/changelog/0.6.0-changelog.rst:298
654
+ msgid "added 'flake8' and 'isort' usages to docs"
655
+ msgstr ""
656
+
657
+ #: ../../source/changelog/0.6.0-changelog.rst:301
658
+ msgid ":pr:`1360`: Grammatical error corrections in documentation"
659
+ msgstr ""
660
+
661
+ #: ../../source/changelog/0.6.0-changelog.rst:301
662
+ msgid "changed a few sentences in docs/source"
663
+ msgstr ""
664
+
665
+ #: ../../source/changelog/0.6.0-changelog.rst:303
666
+ msgid ":pr:`1351`: Some more typehints"
667
+ msgstr ""
668
+
669
+ #: ../../source/changelog/0.6.0-changelog.rst:306
670
+ msgid ":pr:`1358`: Fixed link to installation instructions for developers"
671
+ msgstr ""
672
+
673
+ #: ../../source/changelog/0.6.0-changelog.rst:309
674
+ msgid ":pr:`1338`: Added documentation guidelines for type hints"
675
+ msgstr ""
676
+
677
+ #: ../../source/changelog/0.6.0-changelog.rst:312
678
+ msgid ":pr:`1342`: Multiple ValueTracker example for docs"
679
+ msgstr ""
680
+
681
+ #: ../../source/changelog/0.6.0-changelog.rst:315
682
+ msgid ":pr:`1210`: Added tutorial chapter on coordinates of an mobject"
683
+ msgstr ""
684
+
685
+ #: ../../source/changelog/0.6.0-changelog.rst:318
686
+ msgid ":pr:`1335`: Added import statements to examples in documentation"
687
+ msgstr ""
688
+
689
+ #: ../../source/changelog/0.6.0-changelog.rst:321
690
+ msgid ":pr:`1245`: Added filled angle Example"
691
+ msgstr ""
692
+
693
+ #: ../../source/changelog/0.6.0-changelog.rst:324
694
+ msgid ":pr:`1328`: Docs: Update Brace example"
695
+ msgstr ""
696
+
697
+ #: ../../source/changelog/0.6.0-changelog.rst:327
698
+ msgid ":pr:`1326`: Improve documentation of :class:`~.ManimMagic` (in particular: fix documented order of CLI flags)"
699
+ msgstr ""
700
+
701
+ #: ../../source/changelog/0.6.0-changelog.rst:330
702
+ msgid ":pr:`1323`: Blacken Docs Strings"
703
+ msgstr ""
704
+
705
+ #: ../../source/changelog/0.6.0-changelog.rst:333
706
+ msgid ":pr:`1300`: Added typehints for :class:`~.ValueTracker`"
707
+ msgstr ""
708
+
709
+ #: ../../source/changelog/0.6.0-changelog.rst:336
710
+ msgid ":pr:`1301`: Added further docstrings and typehints to :class:`~.Mobject`"
711
+ msgstr ""
712
+
713
+ #: ../../source/changelog/0.6.0-changelog.rst:339
714
+ msgid ":pr:`1298`: Add double backquotes for rst code samples (value_tracker.py)"
715
+ msgstr ""
716
+
717
+ #: ../../source/changelog/0.6.0-changelog.rst:343
718
+ msgid ":pr:`1297`: Change docs to use viewcode extension instead of linkcode"
719
+ msgstr ""
720
+
721
+ #: ../../source/changelog/0.6.0-changelog.rst:343
722
+ msgid "Switched ``sphinx.ext.linkcode`` to ``sphinx.ext.viewcode`` and removed ``linkcode_resolve`` in ``conf.py``."
723
+ msgstr ""
724
+
725
+ #: ../../source/changelog/0.6.0-changelog.rst:345
726
+ msgid ":pr:`1246`: Added docstrings for :class:`~.ValueTracker`"
727
+ msgstr ""
728
+
729
+ #: ../../source/changelog/0.6.0-changelog.rst:348
730
+ msgid ":pr:`1251`: Switch documentation from guzzle-sphinx-theme to furo"
731
+ msgstr ""
732
+
733
+ #: ../../source/changelog/0.6.0-changelog.rst:351
734
+ msgid ":pr:`1232`: Further docstrings and examples for :class:`~.Mobject`"
735
+ msgstr ""
736
+
737
+ #: ../../source/changelog/0.6.0-changelog.rst:354
738
+ msgid ":pr:`1291`: Grammar improvements in README.md"
739
+ msgstr ""
740
+
741
+ #: ../../source/changelog/0.6.0-changelog.rst:357
742
+ msgid ":pr:`1269`: Add documentation about :meth:`~.set_color_by_tex`"
743
+ msgstr ""
744
+
745
+ #: ../../source/changelog/0.6.0-changelog.rst:360
746
+ msgid ":pr:`1284`: Updated readme by providing the correct link to the example_scenes"
747
+ msgstr ""
748
+
749
+ #: ../../source/changelog/0.6.0-changelog.rst:363
750
+ msgid ":pr:`1029`: Added example jupyter notebook into the examples folders"
751
+ msgstr ""
752
+
753
+ #: ../../source/changelog/0.6.0-changelog.rst:367
754
+ msgid ":pr:`1279`: Added sphinx requirements to pyproject.toml"
755
+ msgstr ""
756
+
757
+ #: ../../source/changelog/0.6.0-changelog.rst:367
758
+ msgid "New contributors who wanted to build the sphinx documentation had an extra step that could be removed by making use of ``poetry install``. This removes the developer's need for ``pip install -r requirements.txt``."
759
+ msgstr ""
760
+
761
+ #: ../../source/changelog/0.6.0-changelog.rst:369
762
+ msgid ":pr:`1268`: Added documentation explaining the differences between manim versions"
763
+ msgstr ""
764
+
765
+ #: ../../source/changelog/0.6.0-changelog.rst:372
766
+ msgid ":pr:`1247`: Added warning for the usage of `animate`"
767
+ msgstr ""
768
+
769
+ #: ../../source/changelog/0.6.0-changelog.rst:375
770
+ msgid ":pr:`1242`: Added an example for the manim colormap"
771
+ msgstr ""
772
+
773
+ #: ../../source/changelog/0.6.0-changelog.rst:378
774
+ msgid ":pr:`1239`: Add TinyTex installation instructions"
775
+ msgstr ""
776
+
777
+ #: ../../source/changelog/0.6.0-changelog.rst:381
778
+ msgid ":pr:`1231`: Improve changelog generation script"
779
+ msgstr ""
780
+
781
+ #: ../../source/changelog/0.6.0-changelog.rst:385
782
+ msgid "Changes concerning the testing system"
783
+ msgstr ""
784
+
785
+ #: ../../source/changelog/0.6.0-changelog.rst:387
786
+ msgid ":pr:`1299`: Red pixels (different value) now appear over green pixels (same value) in GraphicalUnitTest"
787
+ msgstr ""
788
+
789
+ #: ../../source/changelog/0.6.0-changelog.rst:391
790
+ msgid "Changes to our development infrastructure"
791
+ msgstr ""
792
+
793
+ #: ../../source/changelog/0.6.0-changelog.rst:394
794
+ msgid ":pr:`1436`: Cache poetry venv with `pyproject.toml` hash in key"
795
+ msgstr ""
796
+
797
+ #: ../../source/changelog/0.6.0-changelog.rst:394
798
+ msgid "Cache poetry venv with `pyproject.toml` hash in key"
799
+ msgstr ""
800
+
801
+ #: ../../source/changelog/0.6.0-changelog.rst:397
802
+ msgid ":pr:`1435`: CI: Update poetry cache when new version is released"
803
+ msgstr ""
804
+
805
+ #: ../../source/changelog/0.6.0-changelog.rst:397
806
+ msgid "Fix `test_version` failure in CI when using cached poetry venv"
807
+ msgstr ""
808
+
809
+ #: ../../source/changelog/0.6.0-changelog.rst:399
810
+ msgid ":pr:`1427`: Add URL's to pyproject.toml"
811
+ msgstr ""
812
+
813
+ #: ../../source/changelog/0.6.0-changelog.rst:402
814
+ msgid ":pr:`1421`: Updated changelog generator's labels and removed pre-commit bot from changelog"
815
+ msgstr ""
816
+
817
+ #: ../../source/changelog/0.6.0-changelog.rst:405
818
+ msgid ":pr:`1339`: CI: Fix macOS installation error from creating file in read-only file system"
819
+ msgstr ""
820
+
821
+ #: ../../source/changelog/0.6.0-changelog.rst:409
822
+ msgid ":pr:`1257`: CI: Caching ffmpeg, tinytex dependencies and poetry venv"
823
+ msgstr ""
824
+
825
+ #: ../../source/changelog/0.6.0-changelog.rst:409
826
+ msgid "CI: Caching ffmpeg, tinytex dependencies and poetry venv"
827
+ msgstr ""
828
+
829
+ #: ../../source/changelog/0.6.0-changelog.rst:411
830
+ msgid ":pr:`1294`: Added mixed-line-ending to .pre-commit-config.yaml"
831
+ msgstr ""
832
+
833
+ #: ../../source/changelog/0.6.0-changelog.rst:414
834
+ msgid ":pr:`1278`: Fixed flake8 errors and removed linter/formatter workflows"
835
+ msgstr ""
836
+
837
+ #: ../../source/changelog/0.6.0-changelog.rst:417
838
+ msgid ":pr:`1270`: Added isort to pre_commit file"
839
+ msgstr ""
840
+
841
+ #: ../../source/changelog/0.6.0-changelog.rst:422
842
+ msgid ":pr:`1263`: CI: Turn off experimental installer for poetry to fix installation errors"
843
+ msgstr ""
844
+
845
+ #: ../../source/changelog/0.6.0-changelog.rst:421
846
+ msgid "Turn off experimental installer for poetry to prevent manim installation errors for packages."
847
+ msgstr ""
848
+
849
+ #: ../../source/changelog/0.6.0-changelog.rst:422
850
+ msgid "Downgrade py39 to py38 for flake checks as `pip` does not enjoy py39, along with `poetry`."
851
+ msgstr ""
852
+
853
+ #: ../../source/changelog/0.6.0-changelog.rst:425
854
+ msgid ":pr:`1255`: CI: Fix macOS pipeline failure"
855
+ msgstr ""
856
+
857
+ #: ../../source/changelog/0.6.0-changelog.rst:425
858
+ msgid "Update `ci.yml` to update and upgrade brew if necessary before installing dependencies, and remove the unsupported `dvisvgm.86_64-darwin` package."
859
+ msgstr ""
860
+
861
+ #: ../../source/changelog/0.6.0-changelog.rst:427
862
+ msgid ":pr:`1254`: Removed the comment warning that GitHub doesn't allow uploading video in the issue templates."
863
+ msgstr ""
864
+
865
+ #: ../../source/changelog/0.6.0-changelog.rst:430
866
+ msgid ":pr:`1216`: Use actions/checkout for cloning repository; black-checks"
867
+ msgstr ""
868
+
869
+ #: ../../source/changelog/0.6.0-changelog.rst:433
870
+ msgid ":pr:`1235`: Fixed version of decorator at <5.0.0"
871
+ msgstr ""
872
+
873
+ #: ../../source/changelog/0.6.0-changelog.rst:437
874
+ msgid "Code quality improvements and similar refactors"
875
+ msgstr ""
876
+
877
+ #: ../../source/changelog/0.6.0-changelog.rst:439
878
+ msgid ":pr:`1411`: Change `Union[float, int]` to just `float` according to PEP 484"
879
+ msgstr ""
880
+
881
+ #: ../../source/changelog/0.6.0-changelog.rst:442
882
+ msgid ":pr:`1241`: Type Annotations: Fixing errors showing up in static type checking tool mypy"
883
+ msgstr ""
884
+
885
+ #: ../../source/changelog/0.6.0-changelog.rst:446
886
+ msgid ":pr:`1319`: Fix mean/meant typo"
887
+ msgstr ""
888
+
889
+ #: ../../source/changelog/0.6.0-changelog.rst:446
890
+ msgid "Fix typo in docs"
891
+ msgstr ""
892
+
893
+ #: ../../source/changelog/0.6.0-changelog.rst:448
894
+ msgid ":pr:`1313`: Singular typo fix on the Quickstart page in documentation"
895
+ msgstr ""
896
+
897
+ #: ../../source/changelog/0.6.0-changelog.rst:452
898
+ msgid ":pr:`1292`: Remove unnecessary imports from files"
899
+ msgstr ""
900
+
901
+ #: ../../source/changelog/0.6.0-changelog.rst:452
902
+ msgid "Imports reduced in a bunch of files"
903
+ msgstr ""
904
+
905
+ #: ../../source/changelog/0.6.0-changelog.rst:454
906
+ msgid ":pr:`1295`: Fix grammar and typos in the CODE OF CONDUCT"
907
+ msgstr ""
908
+
909
+ #: ../../source/changelog/0.6.0-changelog.rst:458
910
+ msgid ":pr:`1293`: Minor fixes - reduce lines"
911
+ msgstr ""
912
+
913
+ #: ../../source/changelog/0.6.0-changelog.rst:458
914
+ msgid "Remove unnecessary lines"
915
+ msgstr ""
916
+
917
+ #: ../../source/changelog/0.6.0-changelog.rst:460
918
+ msgid ":pr:`1281`: Remove all Carriage Return characters in our files"
919
+ msgstr ""
920
+
921
+ #: ../../source/changelog/0.6.0-changelog.rst:463
922
+ msgid ":pr:`1178`: Format Imports using Isort"
923
+ msgstr ""
924
+
925
+ #: ../../source/changelog/0.6.0-changelog.rst:466
926
+ msgid ":pr:`1233`: Fix deprecation warning for ``--use_opengl_renderer`` and ``--use_webgl_renderer``"
927
+ msgstr ""
928
+
929
+ #: ../../source/changelog/0.6.0-changelog.rst:469
930
+ msgid ":pr:`1282`: Fix typing hints in vectorized_mobject.py based on mypy"
931
+ msgstr ""
932
+
933
+ #: ../../source/changelog/0.6.0-changelog.rst:473
934
+ msgid "New releases"
935
+ msgstr ""
936
+
937
+
data/docs/i18n/gettext/changelog/0.7.0-changelog.pot ADDED
@@ -0,0 +1,790 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.7.0-changelog.rst:3
10
+ msgid "v0.7.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.7.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.7.0-changelog.rst:5
18
+ msgid "June 01, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.7.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.7.0-changelog.rst:10
26
+ msgid "A total of 45 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.7.0-changelog.rst:14
30
+ msgid "André +"
31
+ msgstr ""
32
+
33
+ #: ../../source/changelog/0.7.0-changelog.rst:15
34
+ #: ../../source/changelog/0.7.0-changelog.rst:53
35
+ msgid "Anton Ballmaier"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.7.0-changelog.rst:16
39
+ #: ../../source/changelog/0.7.0-changelog.rst:55
40
+ msgid "Benjamin Hackl"
41
+ msgstr ""
42
+
43
+ #: ../../source/changelog/0.7.0-changelog.rst:17
44
+ msgid "Clar Fon"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.7.0-changelog.rst:18
48
+ #: ../../source/changelog/0.7.0-changelog.rst:56
49
+ msgid "Darylgolden"
50
+ msgstr ""
51
+
52
+ #: ../../source/changelog/0.7.0-changelog.rst:19
53
+ #: ../../source/changelog/0.7.0-changelog.rst:57
54
+ msgid "Devin Neal"
55
+ msgstr ""
56
+
57
+ #: ../../source/changelog/0.7.0-changelog.rst:20
58
+ #: ../../source/changelog/0.7.0-changelog.rst:59
59
+ msgid "Hugues Devimeux"
60
+ msgstr ""
61
+
62
+ #: ../../source/changelog/0.7.0-changelog.rst:21
63
+ msgid "Iced-Tea3 +"
64
+ msgstr ""
65
+
66
+ #: ../../source/changelog/0.7.0-changelog.rst:22
67
+ #: ../../source/changelog/0.7.0-changelog.rst:61
68
+ msgid "Jan-Hendrik Müller"
69
+ msgstr ""
70
+
71
+ #: ../../source/changelog/0.7.0-changelog.rst:23
72
+ #: ../../source/changelog/0.7.0-changelog.rst:62
73
+ msgid "Jason Villanueva"
74
+ msgstr ""
75
+
76
+ #: ../../source/changelog/0.7.0-changelog.rst:24
77
+ msgid "Jerónimo Squartini +"
78
+ msgstr ""
79
+
80
+ #: ../../source/changelog/0.7.0-changelog.rst:25
81
+ #: ../../source/changelog/0.7.0-changelog.rst:64
82
+ msgid "KingWampy"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.7.0-changelog.rst:26
86
+ #: ../../source/changelog/0.7.0-changelog.rst:65
87
+ msgid "Laith Bahodi"
88
+ msgstr ""
89
+
90
+ #: ../../source/changelog/0.7.0-changelog.rst:27
91
+ msgid "Max Stoumen +"
92
+ msgstr ""
93
+
94
+ #: ../../source/changelog/0.7.0-changelog.rst:28
95
+ #: ../../source/changelog/0.7.0-changelog.rst:67
96
+ msgid "Mohammad Al-Fetyani"
97
+ msgstr ""
98
+
99
+ #: ../../source/changelog/0.7.0-changelog.rst:29
100
+ #: ../../source/changelog/0.7.0-changelog.rst:68
101
+ msgid "Naveen M K"
102
+ msgstr ""
103
+
104
+ #: ../../source/changelog/0.7.0-changelog.rst:30
105
+ msgid "NeoPlato"
106
+ msgstr ""
107
+
108
+ #: ../../source/changelog/0.7.0-changelog.rst:31
109
+ msgid "Newell Jensen"
110
+ msgstr ""
111
+
112
+ #: ../../source/changelog/0.7.0-changelog.rst:32
113
+ #: ../../source/changelog/0.7.0-changelog.rst:69
114
+ msgid "Nikhil Garuda"
115
+ msgstr ""
116
+
117
+ #: ../../source/changelog/0.7.0-changelog.rst:33
118
+ msgid "Nikhil Sharma +"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.7.0-changelog.rst:34
122
+ msgid "PaulCMurdoch +"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.7.0-changelog.rst:35
126
+ #: ../../source/changelog/0.7.0-changelog.rst:71
127
+ msgid "Philipp Imhof"
128
+ msgstr ""
129
+
130
+ #: ../../source/changelog/0.7.0-changelog.rst:36
131
+ #: ../../source/changelog/0.7.0-changelog.rst:72
132
+ msgid "Raghav Goel"
133
+ msgstr ""
134
+
135
+ #: ../../source/changelog/0.7.0-changelog.rst:37
136
+ msgid "Robert West +"
137
+ msgstr ""
138
+
139
+ #: ../../source/changelog/0.7.0-changelog.rst:38
140
+ msgid "Ryan McCauley +"
141
+ msgstr ""
142
+
143
+ #: ../../source/changelog/0.7.0-changelog.rst:39
144
+ msgid "Skaft +"
145
+ msgstr ""
146
+
147
+ #: ../../source/changelog/0.7.0-changelog.rst:40
148
+ msgid "SwiddisZwei +"
149
+ msgstr ""
150
+
151
+ #: ../../source/changelog/0.7.0-changelog.rst:41
152
+ msgid "e4coder +"
153
+ msgstr ""
154
+
155
+ #: ../../source/changelog/0.7.0-changelog.rst:42
156
+ #: ../../source/changelog/0.7.0-changelog.rst:78
157
+ msgid "friedkeenan"
158
+ msgstr ""
159
+
160
+ #: ../../source/changelog/0.7.0-changelog.rst:43
161
+ msgid "malte-v +"
162
+ msgstr ""
163
+
164
+ #: ../../source/changelog/0.7.0-changelog.rst:44
165
+ #: ../../source/changelog/0.7.0-changelog.rst:79
166
+ msgid "ralphieraccoon"
167
+ msgstr ""
168
+
169
+ #: ../../source/changelog/0.7.0-changelog.rst:45
170
+ #: ../../source/changelog/0.7.0-changelog.rst:80
171
+ msgid "sparshg"
172
+ msgstr ""
173
+
174
+ #: ../../source/changelog/0.7.0-changelog.rst:48
175
+ msgid "The patches included in this release have been reviewed by the following contributors."
176
+ msgstr ""
177
+
178
+ #: ../../source/changelog/0.7.0-changelog.rst:51
179
+ msgid "Aathish Sivasubrahmanian"
180
+ msgstr ""
181
+
182
+ #: ../../source/changelog/0.7.0-changelog.rst:52
183
+ msgid "Abhijith Muthyala"
184
+ msgstr ""
185
+
186
+ #: ../../source/changelog/0.7.0-changelog.rst:54
187
+ msgid "Aron"
188
+ msgstr ""
189
+
190
+ #: ../../source/changelog/0.7.0-changelog.rst:58
191
+ msgid "GameDungeon"
192
+ msgstr ""
193
+
194
+ #: ../../source/changelog/0.7.0-changelog.rst:60
195
+ msgid "Iced-Tea3"
196
+ msgstr ""
197
+
198
+ #: ../../source/changelog/0.7.0-changelog.rst:63
199
+ msgid "Jerónimo Squartini"
200
+ msgstr ""
201
+
202
+ #: ../../source/changelog/0.7.0-changelog.rst:66
203
+ msgid "Mark Miller"
204
+ msgstr ""
205
+
206
+ #: ../../source/changelog/0.7.0-changelog.rst:70
207
+ msgid "Oliver"
208
+ msgstr ""
209
+
210
+ #: ../../source/changelog/0.7.0-changelog.rst:73
211
+ msgid "Ricky Chon"
212
+ msgstr ""
213
+
214
+ #: ../../source/changelog/0.7.0-changelog.rst:74
215
+ msgid "Ryan McCauley"
216
+ msgstr ""
217
+
218
+ #: ../../source/changelog/0.7.0-changelog.rst:75
219
+ msgid "Skaft"
220
+ msgstr ""
221
+
222
+ #: ../../source/changelog/0.7.0-changelog.rst:76
223
+ msgid "SwiddisZwei"
224
+ msgstr ""
225
+
226
+ #: ../../source/changelog/0.7.0-changelog.rst:77
227
+ msgid "e4coder"
228
+ msgstr ""
229
+
230
+ #: ../../source/changelog/0.7.0-changelog.rst:83
231
+ msgid "Pull requests merged"
232
+ msgstr ""
233
+
234
+ #: ../../source/changelog/0.7.0-changelog.rst:85
235
+ msgid "A total of 87 pull requests were merged for this release."
236
+ msgstr ""
237
+
238
+ #: ../../source/changelog/0.7.0-changelog.rst:88
239
+ msgid "Breaking changes"
240
+ msgstr ""
241
+
242
+ #: ../../source/changelog/0.7.0-changelog.rst:92
243
+ msgid ":pr:`1521`: Improve :class:`~.Animation` docs"
244
+ msgstr ""
245
+
246
+ #: ../../source/changelog/0.7.0-changelog.rst:91
247
+ msgid "Improve documentation of the :class:`~.Animation` class."
248
+ msgstr ""
249
+
250
+ #: ../../source/changelog/0.7.0-changelog.rst:92
251
+ msgid "Unify the signature of ``get_all_mobjects``. Now it always returns a sequence of :class:`Mobjects <.Mobject>`. This breaks using ``FadeTransform.get_all_mobjects`` as ``Group``."
252
+ msgstr ""
253
+
254
+ #: ../../source/changelog/0.7.0-changelog.rst:95
255
+ msgid ":pr:`1470`: Drop support for Python 3.6"
256
+ msgstr ""
257
+
258
+ #: ../../source/changelog/0.7.0-changelog.rst:95
259
+ msgid "Manim won't work on Python 3.6 anymore."
260
+ msgstr ""
261
+
262
+ #: ../../source/changelog/0.7.0-changelog.rst:98
263
+ msgid "Highlights"
264
+ msgstr ""
265
+
266
+ #: ../../source/changelog/0.7.0-changelog.rst:100
267
+ msgid ":pr:`1447`: Added :class:`~.PolarPlane` for polar coordinates."
268
+ msgstr ""
269
+
270
+ #: ../../source/changelog/0.7.0-changelog.rst:109
271
+ msgid ":pr:`1490`: Added :class:`~.Polygram`, rework the polygon inheritance tree, and add :class:`~.Star`"
272
+ msgstr ""
273
+
274
+ #: ../../source/changelog/0.7.0-changelog.rst:104
275
+ msgid "Add :class:`~.Polygram`, a generalized :class:`~.Polygon` that allows for disconnected sets of edges."
276
+ msgstr ""
277
+
278
+ #: ../../source/changelog/0.7.0-changelog.rst:105
279
+ msgid "Make :class:`~.Polygon` inherit from :class:`~.Polygram`."
280
+ msgstr ""
281
+
282
+ #: ../../source/changelog/0.7.0-changelog.rst:106
283
+ msgid "Add :func:`~.regular_vertices`"
284
+ msgstr ""
285
+
286
+ #: ../../source/changelog/0.7.0-changelog.rst:107
287
+ msgid "Add :class:`~.RegularPolygram`."
288
+ msgstr ""
289
+
290
+ #: ../../source/changelog/0.7.0-changelog.rst:108
291
+ msgid "Make :class:`~.RegularPolygon` inherit from :class:`~.RegularPolygram`."
292
+ msgstr ""
293
+
294
+ #: ../../source/changelog/0.7.0-changelog.rst:109
295
+ msgid "Add :class:`~.Star`."
296
+ msgstr ""
297
+
298
+ #: ../../source/changelog/0.7.0-changelog.rst:112
299
+ msgid ":pr:`1462`: OpenGL: Added :class:`~.Shader`, :class:`~.Mesh`, and :class:`~.FullScreenQuad`"
300
+ msgstr ""
301
+
302
+ #: ../../source/changelog/0.7.0-changelog.rst:112
303
+ msgid "Add Shader and Mesh objects"
304
+ msgstr ""
305
+
306
+ #: ../../source/changelog/0.7.0-changelog.rst:117
307
+ msgid ":pr:`1418`: Added project management commands"
308
+ msgstr ""
309
+
310
+ #: ../../source/changelog/0.7.0-changelog.rst:115
311
+ msgid "``manim init`` - quickly sets up default files for a manim project."
312
+ msgstr ""
313
+
314
+ #: ../../source/changelog/0.7.0-changelog.rst:116
315
+ msgid "``manim new project`` - lets the user set project settings. It also creates the project inside a new folder of name <project_name>"
316
+ msgstr ""
317
+
318
+ #: ../../source/changelog/0.7.0-changelog.rst:117
319
+ msgid "``manim new scene`` - used to quickly insert new scenes into files. If ``file name`` is not provided ``main.py`` is used as default."
320
+ msgstr ""
321
+
322
+ #: ../../source/changelog/0.7.0-changelog.rst:120
323
+ msgid "Deprecated classes and functions"
324
+ msgstr ""
325
+
326
+ #: ../../source/changelog/0.7.0-changelog.rst:123
327
+ msgid ":pr:`1598`: Update examples to use :class:`~.Axes` and deprecate :class:`~.GraphScene`"
328
+ msgstr ""
329
+
330
+ #: ../../source/changelog/0.7.0-changelog.rst:123
331
+ msgid ":class:`~.GraphScene` has been deprecated and its functionality has been shifted to :class:`~.Axes`. See the updated example gallery for sample usage."
332
+ msgstr ""
333
+
334
+ #: ../../source/changelog/0.7.0-changelog.rst:126
335
+ msgid ":pr:`1454`: Fading module enhancements"
336
+ msgstr ""
337
+
338
+ #: ../../source/changelog/0.7.0-changelog.rst:126
339
+ msgid "Moved functionality of all Fading classes to :class:`~.FadeIn` and :class:`~.FadeOut`. All other fading classes have been deprecated."
340
+ msgstr ""
341
+
342
+ #: ../../source/changelog/0.7.0-changelog.rst:128
343
+ msgid ":pr:`1375`: Deleted the deprecated ``ShowCreation`` in favor of :class:`~.Create`"
344
+ msgstr ""
345
+
346
+ #: ../../source/changelog/0.7.0-changelog.rst:132
347
+ msgid "New features"
348
+ msgstr ""
349
+
350
+ #: ../../source/changelog/0.7.0-changelog.rst:134
351
+ msgid ":pr:`1566`: Added the ability to add gridlines to a :class:`~.Rectangle`"
352
+ msgstr ""
353
+
354
+ #: ../../source/changelog/0.7.0-changelog.rst:137
355
+ msgid ":pr:`1548`: Added :class:`~.ArcBrace`, a subclass of :class:`~.Brace`."
356
+ msgstr ""
357
+
358
+ #: ../../source/changelog/0.7.0-changelog.rst:141
359
+ msgid ":pr:`1559`: Update VGroup to support item assignment (#1530)"
360
+ msgstr ""
361
+
362
+ #: ../../source/changelog/0.7.0-changelog.rst:141
363
+ msgid "Support indexed item-assignment for VGroup"
364
+ msgstr ""
365
+
366
+ #: ../../source/changelog/0.7.0-changelog.rst:143
367
+ msgid ":pr:`1518`: Allow fading multiple Mobjects in one Animation"
368
+ msgstr ""
369
+
370
+ #: ../../source/changelog/0.7.0-changelog.rst:146
371
+ msgid ":pr:`1422`: Added :func:`~.override_animation` decorator"
372
+ msgstr ""
373
+
374
+ #: ../../source/changelog/0.7.0-changelog.rst:154
375
+ msgid ":pr:`1504`: Color module enhancements"
376
+ msgstr ""
377
+
378
+ #: ../../source/changelog/0.7.0-changelog.rst:150
379
+ msgid "Replaced ``BLUE_E`` with what was previously ``DARK_BLUE`` and removed ``DARK_BLUE``"
380
+ msgstr ""
381
+
382
+ #: ../../source/changelog/0.7.0-changelog.rst:151
383
+ msgid "Added alias ``LIGHTER_GRAY`` for ``GRAY_A``"
384
+ msgstr ""
385
+
386
+ #: ../../source/changelog/0.7.0-changelog.rst:152
387
+ msgid "Added ``PURE_RED``, ``PURE_BLUE`` and renamed ``GREEN_SCREEN`` to ``PURE_GREEN``"
388
+ msgstr ""
389
+
390
+ #: ../../source/changelog/0.7.0-changelog.rst:153
391
+ msgid "All gray colors are now also available using British spelling (including ``GREY_BROWN``)"
392
+ msgstr ""
393
+
394
+ #: ../../source/changelog/0.7.0-changelog.rst:154
395
+ msgid "Replaced color example in the docs. It can now be used as a quick reference for all color names."
396
+ msgstr ""
397
+
398
+ #: ../../source/changelog/0.7.0-changelog.rst:156
399
+ msgid ":pr:`1272`: Implement metaclass approach in geometry module to make mobjects compatible with cairo and opengl rendering"
400
+ msgstr ""
401
+
402
+ #: ../../source/changelog/0.7.0-changelog.rst:160
403
+ msgid ":pr:`1404`: Added two deprecation decorators"
404
+ msgstr ""
405
+
406
+ #: ../../source/changelog/0.7.0-changelog.rst:160
407
+ msgid "Added two function decorators ``deprecated`` and ``deprecated_params`` as a consistent way of deprecating code."
408
+ msgstr ""
409
+
410
+ #: ../../source/changelog/0.7.0-changelog.rst:163
411
+ msgid "Enhancements"
412
+ msgstr ""
413
+
414
+ #: ../../source/changelog/0.7.0-changelog.rst:165
415
+ msgid ":pr:`1572`: OpenGL compatibility via metaclass: :class:`~.TracedPath`, :class:`~.ParametricFunction`, :class:`~.Brace`, :class:`~.VGroup`"
416
+ msgstr ""
417
+
418
+ #: ../../source/changelog/0.7.0-changelog.rst:168
419
+ msgid ":pr:`1472`: Porting methods from :class:`~.GraphScene` to :class:`~.CoordinateSystem`"
420
+ msgstr ""
421
+
422
+ #: ../../source/changelog/0.7.0-changelog.rst:171
423
+ msgid ":pr:`1589`: OpenGL compatibility via metaclass: :class:`~.ValueTracker`"
424
+ msgstr ""
425
+
426
+ #: ../../source/changelog/0.7.0-changelog.rst:175
427
+ msgid ":pr:`1564`: Add extra notes for TeX compilation errors"
428
+ msgstr ""
429
+
430
+ #: ../../source/changelog/0.7.0-changelog.rst:175
431
+ msgid "Add hint to use custom ``TexTemplate`` on TeX compilation errors"
432
+ msgstr ""
433
+
434
+ #: ../../source/changelog/0.7.0-changelog.rst:177
435
+ msgid ":pr:`1584`: Added a check for ``0`` in :meth:`~.round_corners`"
436
+ msgstr ""
437
+
438
+ #: ../../source/changelog/0.7.0-changelog.rst:181
439
+ msgid ":pr:`1586`: Add OpenGLMobject support to all ``isinstance`` occurrences"
440
+ msgstr ""
441
+
442
+ #: ../../source/changelog/0.7.0-changelog.rst:181
443
+ msgid "This PR increases the support for OpenGL in the remaining animation classes and in other places where appropriate."
444
+ msgstr ""
445
+
446
+ #: ../../source/changelog/0.7.0-changelog.rst:183
447
+ msgid ":pr:`1577`: Added new metaclass ConvertToOpenGL (replacing MetaVMobject), restore IntelliSense"
448
+ msgstr ""
449
+
450
+ #: ../../source/changelog/0.7.0-changelog.rst:187
451
+ msgid ":pr:`1562`: Improved VectorField's Nudge Accuracy Per Step"
452
+ msgstr ""
453
+
454
+ #: ../../source/changelog/0.7.0-changelog.rst:187
455
+ msgid "Implemented the Runge-Kutta algorithm in VectorField's nudge function. This increases the accuracy as an object moves along a vector field. This also increases efficiency as the nudge function requires less loops to achieve accuracy than the previous implementation."
456
+ msgstr ""
457
+
458
+ #: ../../source/changelog/0.7.0-changelog.rst:189
459
+ msgid ":pr:`1480`: Add logging info to tex errors"
460
+ msgstr ""
461
+
462
+ #: ../../source/changelog/0.7.0-changelog.rst:194
463
+ msgid ":pr:`1567`: Compatibility Fixes with ManimPango v0.3.0"
464
+ msgstr ""
465
+
466
+ #: ../../source/changelog/0.7.0-changelog.rst:193
467
+ msgid "ManimPango v0.3.0+ is required for Manim now."
468
+ msgstr ""
469
+
470
+ #: ../../source/changelog/0.7.0-changelog.rst:194
471
+ msgid "Show errors from Pango when Markup isn't correct"
472
+ msgstr ""
473
+
474
+ #: ../../source/changelog/0.7.0-changelog.rst:196
475
+ msgid ":pr:`1512`: OpenGL compatibility via metaclass: graph"
476
+ msgstr ""
477
+
478
+ #: ../../source/changelog/0.7.0-changelog.rst:199
479
+ msgid ":pr:`1511`: OpenGL compatibility via metaclass: svg_mobject, text_mobject, tex_mobject"
480
+ msgstr ""
481
+
482
+ #: ../../source/changelog/0.7.0-changelog.rst:202
483
+ msgid ":pr:`1502`: Added ``center`` parameter to :class:`~.Sphere` and ``point`` parameter to :class:`~.Dot3D`"
484
+ msgstr ""
485
+
486
+ #: ../../source/changelog/0.7.0-changelog.rst:206
487
+ msgid ":pr:`1486`: Update of ``rate_functions``"
488
+ msgstr ""
489
+
490
+ #: ../../source/changelog/0.7.0-changelog.rst:206
491
+ msgid "Changed the picture for the non standard rate functions."
492
+ msgstr ""
493
+
494
+ #: ../../source/changelog/0.7.0-changelog.rst:208
495
+ msgid ":pr:`1495`: Ported value_tracker to OpenGL"
496
+ msgstr ""
497
+
498
+ #: ../../source/changelog/0.7.0-changelog.rst:212
499
+ msgid ":pr:`1382`: Expand documentation, testing, and functionality of ValueTrackers; remove ExponentialValueTracker"
500
+ msgstr ""
501
+
502
+ #: ../../source/changelog/0.7.0-changelog.rst:212
503
+ msgid "Added more documentation and inline operators to ValueTracker and ComplexValueTracker. Brought coverage for value_tracker.py to 100%. Removed ExponentialValueTracker."
504
+ msgstr ""
505
+
506
+ #: ../../source/changelog/0.7.0-changelog.rst:214
507
+ msgid ":pr:`1475`: Add SVG elliptical arc support"
508
+ msgstr ""
509
+
510
+ #: ../../source/changelog/0.7.0-changelog.rst:218
511
+ msgid "Fixed bugs"
512
+ msgstr ""
513
+
514
+ #: ../../source/changelog/0.7.0-changelog.rst:220
515
+ msgid ":pr:`1574`: Fixed error when processing SVG with omitted elliptical arc command"
516
+ msgstr ""
517
+
518
+ #: ../../source/changelog/0.7.0-changelog.rst:226
519
+ msgid ":pr:`1596`: Fix indexing for non-whitespace tex arg separator"
520
+ msgstr ""
521
+
522
+ #: ../../source/changelog/0.7.0-changelog.rst:224
523
+ msgid "Fixes #1568"
524
+ msgstr ""
525
+
526
+ #: ../../source/changelog/0.7.0-changelog.rst:226
527
+ msgid "Fix issue when setting the arg_separator of a Tex object as a non-whitespace character(s). The method `break_up_by_substrings(self)` was not accounting for the separator when setting the index."
528
+ msgstr ""
529
+
530
+ #: ../../source/changelog/0.7.0-changelog.rst:228
531
+ msgid ":pr:`1588`: Fixed multiple animations being saved in the same file"
532
+ msgstr ""
533
+
534
+ #: ../../source/changelog/0.7.0-changelog.rst:231
535
+ msgid ":pr:`1571`: Fix tests after introducing parallelization"
536
+ msgstr ""
537
+
538
+ #: ../../source/changelog/0.7.0-changelog.rst:234
539
+ msgid ":pr:`1545`: Fix outdated parameters for :class:`LinearTransformationScene` and add an example + typing."
540
+ msgstr ""
541
+
542
+ #: ../../source/changelog/0.7.0-changelog.rst:239
543
+ msgid ":pr:`1513`: Fixed rotation of gradients while rotating a VMobject"
544
+ msgstr ""
545
+
546
+ #: ../../source/changelog/0.7.0-changelog.rst:238
547
+ msgid "Fixed the direction of gradient which remained the same while rotating VMobjects"
548
+ msgstr ""
549
+
550
+ #: ../../source/changelog/0.7.0-changelog.rst:239
551
+ msgid "Added ``rotate_sheen_direction()`` method in VMobject"
552
+ msgstr ""
553
+
554
+ #: ../../source/changelog/0.7.0-changelog.rst:241
555
+ msgid ":pr:`1570`: Output errors to stderr"
556
+ msgstr ""
557
+
558
+ #: ../../source/changelog/0.7.0-changelog.rst:244
559
+ msgid ":pr:`1560`: Declare ``*.npz`` ``*.wav`` ``*.png`` as binary in ``.gitattributes``"
560
+ msgstr ""
561
+
562
+ #: ../../source/changelog/0.7.0-changelog.rst:248
563
+ msgid ":pr:`1211`: Refactored scene caching and fixed issue when a different hash was produced when copying a mobject in the scene"
564
+ msgstr ""
565
+
566
+ #: ../../source/changelog/0.7.0-changelog.rst:248
567
+ msgid "Refactored internal scene-caching mechanism and fixed bug when an inconsistent hash was produced when copying a mobject."
568
+ msgstr ""
569
+
570
+ #: ../../source/changelog/0.7.0-changelog.rst:250
571
+ msgid ":pr:`1527`: Improved handling of substring isolation within sqrt, and fixed a bug with transform_mismatch for the matching shape transforms"
572
+ msgstr ""
573
+
574
+ #: ../../source/changelog/0.7.0-changelog.rst:253
575
+ msgid ":pr:`1526`: Fix fading"
576
+ msgstr ""
577
+
578
+ #: ../../source/changelog/0.7.0-changelog.rst:256
579
+ msgid ":pr:`1523`: Fix multiple FadeIn / Out only working on VMobjects"
580
+ msgstr ""
581
+
582
+ #: ../../source/changelog/0.7.0-changelog.rst:260
583
+ msgid "Documentation-related changes"
584
+ msgstr ""
585
+
586
+ #: ../../source/changelog/0.7.0-changelog.rst:262
587
+ msgid ":pr:`1599`: Added example for :class:`~.Annulus`"
588
+ msgstr ""
589
+
590
+ #: ../../source/changelog/0.7.0-changelog.rst:265
591
+ msgid ":pr:`1415`: New example for gallery and some docs refinements"
592
+ msgstr ""
593
+
594
+ #: ../../source/changelog/0.7.0-changelog.rst:271
595
+ msgid ":pr:`1509`: Copyedited Documentation"
596
+ msgstr ""
597
+
598
+ #: ../../source/changelog/0.7.0-changelog.rst:269
599
+ msgid "Added a link to Manim Community GitHub page in ``for_dev.rst``. Fixed :meth:`~.Mobject.get_start` and added ``roll`` link in ``building_blocks-rst`` Added language to code blocks in ``configuration.rst``"
600
+ msgstr ""
601
+
602
+ #: ../../source/changelog/0.7.0-changelog.rst:274
603
+ msgid ":pr:`1384`: Added typings to space_ops.py"
604
+ msgstr ""
605
+
606
+ #: ../../source/changelog/0.7.0-changelog.rst:274
607
+ msgid "Added Typehints to most of the functions"
608
+ msgstr ""
609
+
610
+ #: ../../source/changelog/0.7.0-changelog.rst:276
611
+ msgid ":pr:`1500`: Example for :meth:`~.apply_complex_function`"
612
+ msgstr ""
613
+
614
+ #: ../../source/changelog/0.7.0-changelog.rst:279
615
+ msgid ":pr:`1551`: Fixed the typo for Admonitions"
616
+ msgstr ""
617
+
618
+ #: ../../source/changelog/0.7.0-changelog.rst:282
619
+ msgid ":pr:`1550`: Restructuring of Contribution Section"
620
+ msgstr ""
621
+
622
+ #: ../../source/changelog/0.7.0-changelog.rst:285
623
+ msgid ":pr:`1541`: Fixing broken links and other minor doc things"
624
+ msgstr ""
625
+
626
+ #: ../../source/changelog/0.7.0-changelog.rst:288
627
+ msgid ":pr:`1516`: Update docs to use ``t_range`` instead of ``t_min`` and ``t_max`` in :class:`~.ParametricFunction`"
628
+ msgstr ""
629
+
630
+ #: ../../source/changelog/0.7.0-changelog.rst:291
631
+ msgid ":pr:`1508`: Update troubleshooting docs"
632
+ msgstr ""
633
+
634
+ #: ../../source/changelog/0.7.0-changelog.rst:294
635
+ msgid ":pr:`1485`: Added :class:`~.Title` example for the docs"
636
+ msgstr ""
637
+
638
+ #: ../../source/changelog/0.7.0-changelog.rst:297
639
+ msgid ":pr:`1439`: Cleaning ``Sequence`` typehints"
640
+ msgstr ""
641
+
642
+ #: ../../source/changelog/0.7.0-changelog.rst:300
643
+ msgid ":pr:`1440`: Added Scoop installation docs (Windows)"
644
+ msgstr ""
645
+
646
+ #: ../../source/changelog/0.7.0-changelog.rst:303
647
+ msgid ":pr:`1452`: Refine typehints at :class:`~.Angle`"
648
+ msgstr ""
649
+
650
+ #: ../../source/changelog/0.7.0-changelog.rst:306
651
+ msgid ":pr:`1458`: Refine docs of :class:`~.Text` ( add ``disable_ligatures=True`` for t2c)"
652
+ msgstr ""
653
+
654
+ #: ../../source/changelog/0.7.0-changelog.rst:309
655
+ msgid ":pr:`1449`: Added :class:`~.PointCloudDot` example"
656
+ msgstr ""
657
+
658
+ #: ../../source/changelog/0.7.0-changelog.rst:312
659
+ msgid ":pr:`1473`: Added easy example for :meth:`~.arrange_in_grid`"
660
+ msgstr ""
661
+
662
+ #: ../../source/changelog/0.7.0-changelog.rst:315
663
+ msgid ":pr:`1402`: Added typestring parser checker"
664
+ msgstr ""
665
+
666
+ #: ../../source/changelog/0.7.0-changelog.rst:318
667
+ msgid ":pr:`1451`: Reduce complexity of AngleExample"
668
+ msgstr ""
669
+
670
+ #: ../../source/changelog/0.7.0-changelog.rst:322
671
+ msgid ":pr:`1441`: Add inheritance diagrams to reference page"
672
+ msgstr ""
673
+
674
+ #: ../../source/changelog/0.7.0-changelog.rst:322
675
+ msgid "Added inheritance diagrams to the reference page as a quick navigation method."
676
+ msgstr ""
677
+
678
+ #: ../../source/changelog/0.7.0-changelog.rst:324
679
+ msgid ":pr:`1457`: Fixing broken doc links"
680
+ msgstr ""
681
+
682
+ #: ../../source/changelog/0.7.0-changelog.rst:327
683
+ msgid ":pr:`1445`: Remove $ from tutorial commands"
684
+ msgstr ""
685
+
686
+ #: ../../source/changelog/0.7.0-changelog.rst:331
687
+ msgid "Changes concerning the testing system"
688
+ msgstr ""
689
+
690
+ #: ../../source/changelog/0.7.0-changelog.rst:333
691
+ msgid ":pr:`1556`: Try pytest-xdist for parallelization in tests"
692
+ msgstr ""
693
+
694
+ #: ../../source/changelog/0.7.0-changelog.rst:337
695
+ msgid "Changes to our development infrastructure"
696
+ msgstr ""
697
+
698
+ #: ../../source/changelog/0.7.0-changelog.rst:340
699
+ msgid ":pr:`1505`: Add docs reference to PR template"
700
+ msgstr ""
701
+
702
+ #: ../../source/changelog/0.7.0-changelog.rst:340
703
+ msgid "Added documentation link to the Pull Request Template."
704
+ msgstr ""
705
+
706
+ #: ../../source/changelog/0.7.0-changelog.rst:342
707
+ msgid ":pr:`1499`: Updated Discord links in the docs to point towards a standardized redirect"
708
+ msgstr ""
709
+
710
+ #: ../../source/changelog/0.7.0-changelog.rst:345
711
+ msgid ":pr:`1461`: Build the docs - Logging"
712
+ msgstr ""
713
+
714
+ #: ../../source/changelog/0.7.0-changelog.rst:348
715
+ msgid ":pr:`1481`: pyproject.toml: poetry_core -> poetry-core"
716
+ msgstr ""
717
+
718
+ #: ../../source/changelog/0.7.0-changelog.rst:351
719
+ msgid ":pr:`1477`: Update RDT sphinx package to version 3.5.3"
720
+ msgstr ""
721
+
722
+ #: ../../source/changelog/0.7.0-changelog.rst:354
723
+ msgid ":pr:`1460`: Create CONTRIBUTING.md"
724
+ msgstr ""
725
+
726
+ #: ../../source/changelog/0.7.0-changelog.rst:358
727
+ msgid ":pr:`1453`: manim_directive: fix image links in docs - Windows"
728
+ msgstr ""
729
+
730
+ #: ../../source/changelog/0.7.0-changelog.rst:358
731
+ msgid "Use POSIX path on Windows to link images so documentation can build locally."
732
+ msgstr ""
733
+
734
+ #: ../../source/changelog/0.7.0-changelog.rst:361
735
+ msgid "Code quality improvements and similar refactors"
736
+ msgstr ""
737
+
738
+ #: ../../source/changelog/0.7.0-changelog.rst:363
739
+ msgid ":pr:`1465`: Added typings and description to some functions in :mod:`~.coordinate_systems`."
740
+ msgstr ""
741
+
742
+ #: ../../source/changelog/0.7.0-changelog.rst:367
743
+ msgid ":pr:`1552`: Removed unwanted parameters in geometry"
744
+ msgstr ""
745
+
746
+ #: ../../source/changelog/0.7.0-changelog.rst:367
747
+ msgid "Removed ``anchors_span_full_range``, ``close_new_points``, ``anchors_span_full_range``, ``preserve_tip_size_when_scaling``, ``mark_paths_closed`` and ``close_new_points``"
748
+ msgstr ""
749
+
750
+ #: ../../source/changelog/0.7.0-changelog.rst:369
751
+ msgid ":pr:`1597`: Removed hilite_me and insert_line_numbers_in_html from global name space"
752
+ msgstr ""
753
+
754
+ #: ../../source/changelog/0.7.0-changelog.rst:372
755
+ msgid ":pr:`1535`: Update dependencies and fix tests"
756
+ msgstr ""
757
+
758
+ #: ../../source/changelog/0.7.0-changelog.rst:375
759
+ msgid ":pr:`1544`: Adding spell checker as a pre-commit hook"
760
+ msgstr ""
761
+
762
+ #: ../../source/changelog/0.7.0-changelog.rst:378
763
+ msgid ":pr:`1542`: Swapping a pango markup link in docs"
764
+ msgstr ""
765
+
766
+ #: ../../source/changelog/0.7.0-changelog.rst:381
767
+ msgid ":pr:`1531`: Don't use deprecated methods in deprecation.py"
768
+ msgstr ""
769
+
770
+ #: ../../source/changelog/0.7.0-changelog.rst:384
771
+ msgid ":pr:`1492`: Remove stray print statements introduced in #1404"
772
+ msgstr ""
773
+
774
+ #: ../../source/changelog/0.7.0-changelog.rst:387
775
+ msgid ":pr:`1471`: Fix Some Warnings from lgtm"
776
+ msgstr ""
777
+
778
+ #: ../../source/changelog/0.7.0-changelog.rst:391
779
+ msgid "Changes that needed to be reverted again"
780
+ msgstr ""
781
+
782
+ #: ../../source/changelog/0.7.0-changelog.rst:393
783
+ msgid ":pr:`1606`: Bring back ``DARK_BLUE``"
784
+ msgstr ""
785
+
786
+ #: ../../source/changelog/0.7.0-changelog.rst:397
787
+ msgid "New releases"
788
+ msgstr ""
789
+
790
+
data/docs/i18n/gettext/changelog/0.8.0-changelog.pot ADDED
@@ -0,0 +1,600 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.8.0-changelog.rst:3
10
+ msgid "v0.8.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.8.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.8.0-changelog.rst:5
18
+ msgid "July 02, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.8.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.8.0-changelog.rst:10
26
+ msgid "A total of 37 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.8.0-changelog.rst:14
30
+ #: ../../source/changelog/0.8.0-changelog.rst:51
31
+ msgid "Benjamin Hackl"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.8.0-changelog.rst:15
35
+ msgid "Bill Shillito +"
36
+ msgstr ""
37
+
38
+ #: ../../source/changelog/0.8.0-changelog.rst:16
39
+ msgid "Darigov Research +"
40
+ msgstr ""
41
+
42
+ #: ../../source/changelog/0.8.0-changelog.rst:17
43
+ #: ../../source/changelog/0.8.0-changelog.rst:53
44
+ msgid "Darylgolden"
45
+ msgstr ""
46
+
47
+ #: ../../source/changelog/0.8.0-changelog.rst:18
48
+ #: ../../source/changelog/0.8.0-changelog.rst:54
49
+ msgid "Devin Neal"
50
+ msgstr ""
51
+
52
+ #: ../../source/changelog/0.8.0-changelog.rst:19
53
+ msgid "Iced-Tea3"
54
+ msgstr ""
55
+
56
+ #: ../../source/changelog/0.8.0-changelog.rst:20
57
+ #: ../../source/changelog/0.8.0-changelog.rst:55
58
+ msgid "Jan-Hendrik Müller"
59
+ msgstr ""
60
+
61
+ #: ../../source/changelog/0.8.0-changelog.rst:21
62
+ #: ../../source/changelog/0.8.0-changelog.rst:56
63
+ msgid "Jason Villanueva"
64
+ msgstr ""
65
+
66
+ #: ../../source/changelog/0.8.0-changelog.rst:22
67
+ #: ../../source/changelog/0.8.0-changelog.rst:57
68
+ msgid "KingWampy"
69
+ msgstr ""
70
+
71
+ #: ../../source/changelog/0.8.0-changelog.rst:23
72
+ #: ../../source/changelog/0.8.0-changelog.rst:58
73
+ msgid "Laith Bahodi"
74
+ msgstr ""
75
+
76
+ #: ../../source/changelog/0.8.0-changelog.rst:24
77
+ msgid "MathInvariance +"
78
+ msgstr ""
79
+
80
+ #: ../../source/changelog/0.8.0-changelog.rst:25
81
+ msgid "Max Stoumen"
82
+ msgstr ""
83
+
84
+ #: ../../source/changelog/0.8.0-changelog.rst:26
85
+ msgid "Mehmet Ali Özer +"
86
+ msgstr ""
87
+
88
+ #: ../../source/changelog/0.8.0-changelog.rst:27
89
+ msgid "Michael Pilosov +"
90
+ msgstr ""
91
+
92
+ #: ../../source/changelog/0.8.0-changelog.rst:28
93
+ #: ../../source/changelog/0.8.0-changelog.rst:61
94
+ msgid "Mohammad Al-Fetyani"
95
+ msgstr ""
96
+
97
+ #: ../../source/changelog/0.8.0-changelog.rst:29
98
+ #: ../../source/changelog/0.8.0-changelog.rst:62
99
+ msgid "Naveen M K"
100
+ msgstr ""
101
+
102
+ #: ../../source/changelog/0.8.0-changelog.rst:30
103
+ #: ../../source/changelog/0.8.0-changelog.rst:63
104
+ msgid "Nikhil Garuda"
105
+ msgstr ""
106
+
107
+ #: ../../source/changelog/0.8.0-changelog.rst:31
108
+ #: ../../source/changelog/0.8.0-changelog.rst:64
109
+ msgid "Oliver"
110
+ msgstr ""
111
+
112
+ #: ../../source/changelog/0.8.0-changelog.rst:32
113
+ msgid "PaulCMurdoch"
114
+ msgstr ""
115
+
116
+ #: ../../source/changelog/0.8.0-changelog.rst:33
117
+ #: ../../source/changelog/0.8.0-changelog.rst:65
118
+ msgid "Philipp Imhof"
119
+ msgstr ""
120
+
121
+ #: ../../source/changelog/0.8.0-changelog.rst:34
122
+ msgid "PipedQuintes +"
123
+ msgstr ""
124
+
125
+ #: ../../source/changelog/0.8.0-changelog.rst:35
126
+ #: ../../source/changelog/0.8.0-changelog.rst:66
127
+ msgid "Raghav Goel"
128
+ msgstr ""
129
+
130
+ #: ../../source/changelog/0.8.0-changelog.rst:36
131
+ #: ../../source/changelog/0.8.0-changelog.rst:67
132
+ msgid "Ryan McCauley"
133
+ msgstr ""
134
+
135
+ #: ../../source/changelog/0.8.0-changelog.rst:37
136
+ msgid "Ujjayanta +"
137
+ msgstr ""
138
+
139
+ #: ../../source/changelog/0.8.0-changelog.rst:38
140
+ msgid "Vagrid +"
141
+ msgstr ""
142
+
143
+ #: ../../source/changelog/0.8.0-changelog.rst:39
144
+ msgid "andrehisatsuga +"
145
+ msgstr ""
146
+
147
+ #: ../../source/changelog/0.8.0-changelog.rst:40
148
+ #: ../../source/changelog/0.8.0-changelog.rst:70
149
+ msgid "friedkeenan"
150
+ msgstr ""
151
+
152
+ #: ../../source/changelog/0.8.0-changelog.rst:41
153
+ msgid "peaceheis +"
154
+ msgstr ""
155
+
156
+ #: ../../source/changelog/0.8.0-changelog.rst:42
157
+ msgid "yit6 +"
158
+ msgstr ""
159
+
160
+ #: ../../source/changelog/0.8.0-changelog.rst:45
161
+ msgid "The patches included in this release have been reviewed by the following contributors."
162
+ msgstr ""
163
+
164
+ #: ../../source/changelog/0.8.0-changelog.rst:48
165
+ msgid "Abhijith Muthyala"
166
+ msgstr ""
167
+
168
+ #: ../../source/changelog/0.8.0-changelog.rst:49
169
+ msgid "Anton Ballmaier"
170
+ msgstr ""
171
+
172
+ #: ../../source/changelog/0.8.0-changelog.rst:50
173
+ msgid "Aron"
174
+ msgstr ""
175
+
176
+ #: ../../source/changelog/0.8.0-changelog.rst:52
177
+ msgid "Clar Fon"
178
+ msgstr ""
179
+
180
+ #: ../../source/changelog/0.8.0-changelog.rst:59
181
+ msgid "Mark Miller"
182
+ msgstr ""
183
+
184
+ #: ../../source/changelog/0.8.0-changelog.rst:60
185
+ msgid "MathInvariance"
186
+ msgstr ""
187
+
188
+ #: ../../source/changelog/0.8.0-changelog.rst:68
189
+ msgid "Ujjayanta"
190
+ msgstr ""
191
+
192
+ #: ../../source/changelog/0.8.0-changelog.rst:69
193
+ msgid "Vagrid"
194
+ msgstr ""
195
+
196
+ #: ../../source/changelog/0.8.0-changelog.rst:73
197
+ msgid "Pull requests merged"
198
+ msgstr ""
199
+
200
+ #: ../../source/changelog/0.8.0-changelog.rst:75
201
+ msgid "A total of 76 pull requests were merged for this release."
202
+ msgstr ""
203
+
204
+ #: ../../source/changelog/0.8.0-changelog.rst:78
205
+ msgid "Deprecated classes and functions"
206
+ msgstr ""
207
+
208
+ #: ../../source/changelog/0.8.0-changelog.rst:80
209
+ msgid ":pr:`1616`: Remove all functions and classes that were deprecated until ``v0.6.0``"
210
+ msgstr ""
211
+
212
+ #: ../../source/changelog/0.8.0-changelog.rst:84
213
+ msgid "New features"
214
+ msgstr ""
215
+
216
+ #: ../../source/changelog/0.8.0-changelog.rst:87
217
+ msgid ":pr:`1716`: Rewrite stroke and fill shaders"
218
+ msgstr ""
219
+
220
+ #: ../../source/changelog/0.8.0-changelog.rst:87
221
+ msgid "Rewrite vectorized mobject shaders to be compatible with transformation matrices."
222
+ msgstr ""
223
+
224
+ #: ../../source/changelog/0.8.0-changelog.rst:90
225
+ msgid ":pr:`1695`: Add option to justify text with :class:`~.MarkupText`"
226
+ msgstr ""
227
+
228
+ #: ../../source/changelog/0.8.0-changelog.rst:90
229
+ msgid "A new parameter ``justify`` is added to :class:`~.MarkupText`. It can be used to justify a paragraph of text."
230
+ msgstr ""
231
+
232
+ #: ../../source/changelog/0.8.0-changelog.rst:94
233
+ msgid ":pr:`1660`: Added support for ``.webm`` and transparency of videos in Jupyter notebooks"
234
+ msgstr ""
235
+
236
+ #: ../../source/changelog/0.8.0-changelog.rst:93
237
+ msgid "Added support for generating ``webm`` videos via the command line flag ``--format=webm``"
238
+ msgstr ""
239
+
240
+ #: ../../source/changelog/0.8.0-changelog.rst:94
241
+ msgid "Added transparency support for Jupyter notebooks"
242
+ msgstr ""
243
+
244
+ #: ../../source/changelog/0.8.0-changelog.rst:96
245
+ msgid ":pr:`1553`: Add dearpygui integration"
246
+ msgstr ""
247
+
248
+ #: ../../source/changelog/0.8.0-changelog.rst:100
249
+ msgid "Enhancements"
250
+ msgstr ""
251
+
252
+ #: ../../source/changelog/0.8.0-changelog.rst:102
253
+ msgid ":pr:`1728`: Improved positioning and size of the OpenGL window; added some configuration options"
254
+ msgstr ""
255
+
256
+ #: ../../source/changelog/0.8.0-changelog.rst:105
257
+ msgid ":pr:`1733`: Let OpenGLMobject.copy return a deep copy by default"
258
+ msgstr ""
259
+
260
+ #: ../../source/changelog/0.8.0-changelog.rst:108
261
+ msgid ":pr:`1735`: Metaclass compatibility for `coordinate_system.py`, `Code` and `ParametricSurface`"
262
+ msgstr ""
263
+
264
+ #: ../../source/changelog/0.8.0-changelog.rst:111
265
+ msgid ":pr:`1585`: OpenGL compatibility via metaclass for :class:`~.Matrix`, :class:`~.DecimalNumber`, :class:`~.Variable`"
266
+ msgstr ""
267
+
268
+ #: ../../source/changelog/0.8.0-changelog.rst:114
269
+ msgid ":pr:`1713`: Exit the command line interface gracefully if no scene was chosen"
270
+ msgstr ""
271
+
272
+ #: ../../source/changelog/0.8.0-changelog.rst:119
273
+ msgid ":pr:`1652`: Refactored :class:`~.Mobject` and :class:`~.Scene` to no longer inherit from the abstract base class ``Container``"
274
+ msgstr ""
275
+
276
+ #: ../../source/changelog/0.8.0-changelog.rst:118
277
+ msgid "Moved tests in ``test_container.py`` for :class:`Container` that test :class:`~.Scene` and :class:`~.Mobject` to their own files."
278
+ msgstr ""
279
+
280
+ #: ../../source/changelog/0.8.0-changelog.rst:119
281
+ msgid "Corrected various instances of incorrectly passed keyword arguments, or unused keyword arguments."
282
+ msgstr ""
283
+
284
+ #: ../../source/changelog/0.8.0-changelog.rst:121
285
+ msgid ":pr:`1693`: Made the default arrowhead size for :class:`~.Arrow3D` smaller"
286
+ msgstr ""
287
+
288
+ #: ../../source/changelog/0.8.0-changelog.rst:127
289
+ msgid ":pr:`1678`: Allow some rate functions to assume values outside of [0, 1]; introduce clamping decorators"
290
+ msgstr ""
291
+
292
+ #: ../../source/changelog/0.8.0-changelog.rst:125
293
+ msgid "Fixed animations so that certain rate functions (``running_start``, ``wiggle``, ``ease_in_back``, ``ease_out_back``, ``ease_in_out_back``, ``ease_in_elastic``, ``ease_out_elastic``, and ``ease_out_elastic``) can go outside the range from 0 to 1."
294
+ msgstr ""
295
+
296
+ #: ../../source/changelog/0.8.0-changelog.rst:126
297
+ msgid "Fixed lag ratios so that they're spaced out evenly within the time interval and the rate functions are applied to each animation individually, rather than having the rate function determine when the animation starts."
298
+ msgstr ""
299
+
300
+ #: ../../source/changelog/0.8.0-changelog.rst:127
301
+ msgid "Fixed faulty code for ``ease_in_out_expo``, ``ease_in_bounce``, ``ease_out_bounce``, and ``ease_in_out_bounce``."
302
+ msgstr ""
303
+
304
+ #: ../../source/changelog/0.8.0-changelog.rst:129
305
+ msgid ":pr:`1649`: Made video file names in Jupyter notebook more readable"
306
+ msgstr ""
307
+
308
+ #: ../../source/changelog/0.8.0-changelog.rst:133
309
+ msgid ":pr:`1667`: Determine the default number of decimal places for :class:`~.NumberLine` labels automatically from the step size"
310
+ msgstr ""
311
+
312
+ #: ../../source/changelog/0.8.0-changelog.rst:133
313
+ msgid "As an example: If the step size is set to 0.5, labels will now show at least one decimal place."
314
+ msgstr ""
315
+
316
+ #: ../../source/changelog/0.8.0-changelog.rst:135
317
+ msgid ":pr:`1608`: Color file paths in terminal; remove curly braces surrounding the file path in \"Partial movie file written in...\" messages"
318
+ msgstr ""
319
+
320
+ #: ../../source/changelog/0.8.0-changelog.rst:138
321
+ msgid ":pr:`1632`: OpenGL compatibility via metaclass: :class:`~.Group`"
322
+ msgstr ""
323
+
324
+ #: ../../source/changelog/0.8.0-changelog.rst:142
325
+ msgid "Fixed bugs"
326
+ msgstr ""
327
+
328
+ #: ../../source/changelog/0.8.0-changelog.rst:144
329
+ msgid ":pr:`1740`: Fix pillow to <8.3.0"
330
+ msgstr ""
331
+
332
+ #: ../../source/changelog/0.8.0-changelog.rst:147
333
+ msgid ":pr:`1729`: Fix bug when using :class:`~.Text` with the OpenGL renderer"
334
+ msgstr ""
335
+
336
+ #: ../../source/changelog/0.8.0-changelog.rst:150
337
+ msgid ":pr:`1675`: Fixed ignored fill and stroke colors for :class:`~.SVGMobject`"
338
+ msgstr ""
339
+
340
+ #: ../../source/changelog/0.8.0-changelog.rst:153
341
+ msgid ":pr:`1664`: Fixed accidental displacement in :class:`~.Axes` caused by ``include_numbers`` / ``numbers_to_include``"
342
+ msgstr ""
343
+
344
+ #: ../../source/changelog/0.8.0-changelog.rst:156
345
+ msgid ":pr:`1670`: Fixed missing ``numpy`` import in OpenGL shader example"
346
+ msgstr ""
347
+
348
+ #: ../../source/changelog/0.8.0-changelog.rst:159
349
+ msgid ":pr:`1636`: Fixed bugs and added examples to methods and classes in :mod:`manim.mobject.matrix`"
350
+ msgstr ""
351
+
352
+ #: ../../source/changelog/0.8.0-changelog.rst:162
353
+ msgid ":pr:`1614`: Fix tick issues and improve tick placement for :class:`~.NumberLine`"
354
+ msgstr ""
355
+
356
+ #: ../../source/changelog/0.8.0-changelog.rst:165
357
+ msgid ":pr:`1593`: Un-flip output of ``get_frame()`` when using the OpenGL renderer"
358
+ msgstr ""
359
+
360
+ #: ../../source/changelog/0.8.0-changelog.rst:168
361
+ msgid ":pr:`1619`: Fix output of automatically detected LaTeX errors"
362
+ msgstr ""
363
+
364
+ #: ../../source/changelog/0.8.0-changelog.rst:176
365
+ msgid ":pr:`1595`: Fixed a few CLI and rendering bugs"
366
+ msgstr ""
367
+
368
+ #: ../../source/changelog/0.8.0-changelog.rst:172
369
+ msgid "Corrected issue where gifs were being logged with an incorrect extension"
370
+ msgstr ""
371
+
372
+ #: ../../source/changelog/0.8.0-changelog.rst:173
373
+ msgid "Fixed issue where videos were output when format was set to png"
374
+ msgstr ""
375
+
376
+ #: ../../source/changelog/0.8.0-changelog.rst:174
377
+ msgid "Added logging for png output"
378
+ msgstr ""
379
+
380
+ #: ../../source/changelog/0.8.0-changelog.rst:175
381
+ msgid "Added precedence handling when the ``write_to_movie`` flag would conflict with ``--format``"
382
+ msgstr ""
383
+
384
+ #: ../../source/changelog/0.8.0-changelog.rst:176
385
+ msgid "Fixed issue that caused png image output to be ignored when caching was enabled"
386
+ msgstr ""
387
+
388
+ #: ../../source/changelog/0.8.0-changelog.rst:178
389
+ msgid ":pr:`1635`: Added missing numpy import for :mod:`manim.mobject.probability`"
390
+ msgstr ""
391
+
392
+ #: ../../source/changelog/0.8.0-changelog.rst:182
393
+ msgid ":pr:`1634`: Fixed OpenGL examples for MacOS"
394
+ msgstr ""
395
+
396
+ #: ../../source/changelog/0.8.0-changelog.rst:182
397
+ msgid "Renamed deprecated ``gl_FragColor`` to ``fragColor``."
398
+ msgstr ""
399
+
400
+ #: ../../source/changelog/0.8.0-changelog.rst:185
401
+ msgid "Documentation-related changes"
402
+ msgstr ""
403
+
404
+ #: ../../source/changelog/0.8.0-changelog.rst:187
405
+ msgid ":pr:`1732`: Remove reference to ``--plugins`` flag"
406
+ msgstr ""
407
+
408
+ #: ../../source/changelog/0.8.0-changelog.rst:190
409
+ msgid ":pr:`1734`: Fix inheritance graph background color"
410
+ msgstr ""
411
+
412
+ #: ../../source/changelog/0.8.0-changelog.rst:193
413
+ msgid ":pr:`1698`: Added an example for :class:`~.PMobject`"
414
+ msgstr ""
415
+
416
+ #: ../../source/changelog/0.8.0-changelog.rst:196
417
+ msgid ":pr:`1690`: Added an example for :class:`~.CoordinateSystem`"
418
+ msgstr ""
419
+
420
+ #: ../../source/changelog/0.8.0-changelog.rst:199
421
+ msgid ":pr:`1510`: Add a tutorial for using :class:`~.Text` and :class:`~.Tex`"
422
+ msgstr ""
423
+
424
+ #: ../../source/changelog/0.8.0-changelog.rst:202
425
+ msgid ":pr:`1685`: Added an example and parameter description for :class:`~.AnnularSector`"
426
+ msgstr ""
427
+
428
+ #: ../../source/changelog/0.8.0-changelog.rst:205
429
+ msgid ":pr:`1687`: Updated imports in ``geometry.py`` and added example to :class:`~.Arrow`"
430
+ msgstr ""
431
+
432
+ #: ../../source/changelog/0.8.0-changelog.rst:208
433
+ msgid ":pr:`1681`: Added an example for :class:`~.NumberLine`"
434
+ msgstr ""
435
+
436
+ #: ../../source/changelog/0.8.0-changelog.rst:211
437
+ msgid ":pr:`1697`: Added an example for :class:`~.PGroup`"
438
+ msgstr ""
439
+
440
+ #: ../../source/changelog/0.8.0-changelog.rst:214
441
+ msgid ":pr:`1594`: Several improvements to the documentation design and layout"
442
+ msgstr ""
443
+
444
+ #: ../../source/changelog/0.8.0-changelog.rst:217
445
+ msgid ":pr:`1696`: Added an example for :class:`~.DashedVMobject`"
446
+ msgstr ""
447
+
448
+ #: ../../source/changelog/0.8.0-changelog.rst:220
449
+ msgid ":pr:`1637`: Added an example for :class:`~.FunctionGraph`"
450
+ msgstr ""
451
+
452
+ #: ../../source/changelog/0.8.0-changelog.rst:223
453
+ msgid ":pr:`1626`: Added an example for :class:`~.Prism`"
454
+ msgstr ""
455
+
456
+ #: ../../source/changelog/0.8.0-changelog.rst:226
457
+ msgid ":pr:`1712`: Added a second example for :class:`~.DoubleArrow`"
458
+ msgstr ""
459
+
460
+ #: ../../source/changelog/0.8.0-changelog.rst:229
461
+ msgid ":pr:`1710`: Update copyright year in documentation to 2020-2021"
462
+ msgstr ""
463
+
464
+ #: ../../source/changelog/0.8.0-changelog.rst:232
465
+ msgid ":pr:`1708`: Fixed link to interactive example notebook"
466
+ msgstr ""
467
+
468
+ #: ../../source/changelog/0.8.0-changelog.rst:235
469
+ msgid ":pr:`1657`: Added an example for :class:`~.ParametricSurface`"
470
+ msgstr ""
471
+
472
+ #: ../../source/changelog/0.8.0-changelog.rst:238
473
+ msgid ":pr:`1642`: Added examples and docstrings for :class:`~.BarChart`"
474
+ msgstr ""
475
+
476
+ #: ../../source/changelog/0.8.0-changelog.rst:241
477
+ msgid ":pr:`1700`: Added an example for :meth:`~.Mobject.scale`"
478
+ msgstr ""
479
+
480
+ #: ../../source/changelog/0.8.0-changelog.rst:244
481
+ msgid ":pr:`1689`: Added an example for :class:`~.SurroundingRectangle`"
482
+ msgstr ""
483
+
484
+ #: ../../source/changelog/0.8.0-changelog.rst:247
485
+ msgid ":pr:`1627`: Added an example for :class:`~.Sphere`"
486
+ msgstr ""
487
+
488
+ #: ../../source/changelog/0.8.0-changelog.rst:250
489
+ msgid ":pr:`1569`: Added example to demonstrate differences between :class:`~.Transform` and :class:`~.ReplacementTransform`"
490
+ msgstr ""
491
+
492
+ #: ../../source/changelog/0.8.0-changelog.rst:253
493
+ msgid ":pr:`1647`: Added an example for :class:`~.Sector`"
494
+ msgstr ""
495
+
496
+ #: ../../source/changelog/0.8.0-changelog.rst:256
497
+ msgid ":pr:`1673`: Updated documentation examples for :class:`~.Text` and :class:`~.MarkupText`: set ``weight=BOLD`` instead of ``style``"
498
+ msgstr ""
499
+
500
+ #: ../../source/changelog/0.8.0-changelog.rst:259
501
+ msgid ":pr:`1650`: Added an example for :class:`~.ArcBetweenPoints`"
502
+ msgstr ""
503
+
504
+ #: ../../source/changelog/0.8.0-changelog.rst:262
505
+ msgid ":pr:`1628`: Added an example for :class:`~.NumberPlane`"
506
+ msgstr ""
507
+
508
+ #: ../../source/changelog/0.8.0-changelog.rst:265
509
+ msgid ":pr:`1646`: Added an example for :class:`~.Underline`"
510
+ msgstr ""
511
+
512
+ #: ../../source/changelog/0.8.0-changelog.rst:268
513
+ msgid ":pr:`1659`: Added more details to the Google Colab installation instructions"
514
+ msgstr ""
515
+
516
+ #: ../../source/changelog/0.8.0-changelog.rst:271
517
+ msgid ":pr:`1658`: Updated python requirement in the documentation"
518
+ msgstr ""
519
+
520
+ #: ../../source/changelog/0.8.0-changelog.rst:274
521
+ msgid ":pr:`1639`: Added an example for :class:`~.SampleSpace`"
522
+ msgstr ""
523
+
524
+ #: ../../source/changelog/0.8.0-changelog.rst:277
525
+ msgid ":pr:`1640`: Added an example for :class:`~.Point`"
526
+ msgstr ""
527
+
528
+ #: ../../source/changelog/0.8.0-changelog.rst:280
529
+ msgid ":pr:`1643`: Fixed ``RightArcAngleExample`` for :class:`~.Angle` in documentation"
530
+ msgstr ""
531
+
532
+ #: ../../source/changelog/0.8.0-changelog.rst:283
533
+ msgid ":pr:`1617`: Visually improved an example in our tutorial"
534
+ msgstr ""
535
+
536
+ #: ../../source/changelog/0.8.0-changelog.rst:286
537
+ msgid ":pr:`1641`: Added an example for :class:`~.ComplexPlane`"
538
+ msgstr ""
539
+
540
+ #: ../../source/changelog/0.8.0-changelog.rst:289
541
+ msgid ":pr:`1644`: Added an example for :class:`~.BackgroundRectangle`"
542
+ msgstr ""
543
+
544
+ #: ../../source/changelog/0.8.0-changelog.rst:292
545
+ msgid ":pr:`1633`: Added an example for :class:`~.Integer`"
546
+ msgstr ""
547
+
548
+ #: ../../source/changelog/0.8.0-changelog.rst:295
549
+ msgid ":pr:`1630`: Added an example for :class:`~.Arc`"
550
+ msgstr ""
551
+
552
+ #: ../../source/changelog/0.8.0-changelog.rst:298
553
+ msgid ":pr:`1631`: Added an example for :class:`~.BulletedList`"
554
+ msgstr ""
555
+
556
+ #: ../../source/changelog/0.8.0-changelog.rst:301
557
+ msgid ":pr:`1620`: Fixed reference to command line interface help command"
558
+ msgstr ""
559
+
560
+ #: ../../source/changelog/0.8.0-changelog.rst:305
561
+ msgid "Changes to our development infrastructure"
562
+ msgstr ""
563
+
564
+ #: ../../source/changelog/0.8.0-changelog.rst:307
565
+ msgid ":pr:`1623`: CI: branch rename: master -> main"
566
+ msgstr ""
567
+
568
+ #: ../../source/changelog/0.8.0-changelog.rst:310
569
+ msgid ":pr:`1621`: Revert default template and add new templates"
570
+ msgstr ""
571
+
572
+ #: ../../source/changelog/0.8.0-changelog.rst:313
573
+ msgid ":pr:`1573`: PR template for the manim hackathon"
574
+ msgstr ""
575
+
576
+ #: ../../source/changelog/0.8.0-changelog.rst:317
577
+ msgid "Code quality improvements and similar refactors"
578
+ msgstr ""
579
+
580
+ #: ../../source/changelog/0.8.0-changelog.rst:319
581
+ msgid ":pr:`1720`: Renamed incorrect references of ``master`` to ``main``"
582
+ msgstr ""
583
+
584
+ #: ../../source/changelog/0.8.0-changelog.rst:322
585
+ msgid ":pr:`1692`: Removed redundant warning in CLI parsing"
586
+ msgstr ""
587
+
588
+ #: ../../source/changelog/0.8.0-changelog.rst:325
589
+ msgid ":pr:`1651`: Small code cleanup for :class:`~.Polygram`"
590
+ msgstr ""
591
+
592
+ #: ../../source/changelog/0.8.0-changelog.rst:328
593
+ msgid ":pr:`1610`: Changed one image extension to lowercase letters"
594
+ msgstr ""
595
+
596
+ #: ../../source/changelog/0.8.0-changelog.rst:332
597
+ msgid "New releases"
598
+ msgstr ""
599
+
600
+
data/docs/i18n/gettext/changelog/0.9.0-changelog.pot ADDED
@@ -0,0 +1,564 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/changelog/0.9.0-changelog.rst:3
10
+ msgid "v0.9.0"
11
+ msgstr ""
12
+
13
+ #: ../../source/changelog/0.9.0-changelog.rst:0
14
+ msgid "Date"
15
+ msgstr ""
16
+
17
+ #: ../../source/changelog/0.9.0-changelog.rst:5
18
+ msgid "August 02, 2021"
19
+ msgstr ""
20
+
21
+ #: ../../source/changelog/0.9.0-changelog.rst:8
22
+ msgid "Contributors"
23
+ msgstr ""
24
+
25
+ #: ../../source/changelog/0.9.0-changelog.rst:10
26
+ msgid "A total of 35 people contributed to this release. People with a '+' by their names authored a patch for the first time."
27
+ msgstr ""
28
+
29
+ #: ../../source/changelog/0.9.0-changelog.rst:14
30
+ #: ../../source/changelog/0.9.0-changelog.rst:47
31
+ msgid "Alex Lembcke"
32
+ msgstr ""
33
+
34
+ #: ../../source/changelog/0.9.0-changelog.rst:15
35
+ #: ../../source/changelog/0.9.0-changelog.rst:48
36
+ msgid "Benjamin Hackl"
37
+ msgstr ""
38
+
39
+ #: ../../source/changelog/0.9.0-changelog.rst:16
40
+ #: ../../source/changelog/0.9.0-changelog.rst:49
41
+ msgid "Darylgolden"
42
+ msgstr ""
43
+
44
+ #: ../../source/changelog/0.9.0-changelog.rst:17
45
+ #: ../../source/changelog/0.9.0-changelog.rst:50
46
+ msgid "Devin Neal"
47
+ msgstr ""
48
+
49
+ #: ../../source/changelog/0.9.0-changelog.rst:18
50
+ msgid "Harivinay +"
51
+ msgstr ""
52
+
53
+ #: ../../source/changelog/0.9.0-changelog.rst:19
54
+ #: ../../source/changelog/0.9.0-changelog.rst:52
55
+ msgid "Hugues Devimeux"
56
+ msgstr ""
57
+
58
+ #: ../../source/changelog/0.9.0-changelog.rst:20
59
+ msgid "Jared Hughes +"
60
+ msgstr ""
61
+
62
+ #: ../../source/changelog/0.9.0-changelog.rst:21
63
+ #: ../../source/changelog/0.9.0-changelog.rst:54
64
+ msgid "Jason Villanueva"
65
+ msgstr ""
66
+
67
+ #: ../../source/changelog/0.9.0-changelog.rst:22
68
+ msgid "Kadatatlu Kishore +"
69
+ msgstr ""
70
+
71
+ #: ../../source/changelog/0.9.0-changelog.rst:23
72
+ #: ../../source/changelog/0.9.0-changelog.rst:55
73
+ msgid "KingWampy"
74
+ msgstr ""
75
+
76
+ #: ../../source/changelog/0.9.0-changelog.rst:24
77
+ msgid "LED Me Explain +"
78
+ msgstr ""
79
+
80
+ #: ../../source/changelog/0.9.0-changelog.rst:25
81
+ #: ../../source/changelog/0.9.0-changelog.rst:56
82
+ msgid "Laith Bahodi"
83
+ msgstr ""
84
+
85
+ #: ../../source/changelog/0.9.0-changelog.rst:26
86
+ #: ../../source/changelog/0.9.0-changelog.rst:58
87
+ msgid "Mohammad Al-Fetyani"
88
+ msgstr ""
89
+
90
+ #: ../../source/changelog/0.9.0-changelog.rst:27
91
+ msgid "Noam Zaks"
92
+ msgstr ""
93
+
94
+ #: ../../source/changelog/0.9.0-changelog.rst:28
95
+ #: ../../source/changelog/0.9.0-changelog.rst:59
96
+ msgid "Oliver"
97
+ msgstr ""
98
+
99
+ #: ../../source/changelog/0.9.0-changelog.rst:29
100
+ msgid "PaulCMurdoch"
101
+ msgstr ""
102
+
103
+ #: ../../source/changelog/0.9.0-changelog.rst:30
104
+ msgid "Raghav Prabhakar +"
105
+ msgstr ""
106
+
107
+ #: ../../source/changelog/0.9.0-changelog.rst:31
108
+ msgid "Ryan McCauley"
109
+ msgstr ""
110
+
111
+ #: ../../source/changelog/0.9.0-changelog.rst:32
112
+ msgid "Suhail Sherif +"
113
+ msgstr ""
114
+
115
+ #: ../../source/changelog/0.9.0-changelog.rst:33
116
+ msgid "Taektiek +"
117
+ msgstr ""
118
+
119
+ #: ../../source/changelog/0.9.0-changelog.rst:34
120
+ msgid "Udeshya Dhungana +"
121
+ msgstr ""
122
+
123
+ #: ../../source/changelog/0.9.0-changelog.rst:35
124
+ msgid "UraniumCronorum +"
125
+ msgstr ""
126
+
127
+ #: ../../source/changelog/0.9.0-changelog.rst:36
128
+ msgid "Vinh H. Pham (Vincent) +"
129
+ msgstr ""
130
+
131
+ #: ../../source/changelog/0.9.0-changelog.rst:37
132
+ msgid "ccn +"
133
+ msgstr ""
134
+
135
+ #: ../../source/changelog/0.9.0-changelog.rst:38
136
+ msgid "icedcoffeeee +"
137
+ msgstr ""
138
+
139
+ #: ../../source/changelog/0.9.0-changelog.rst:39
140
+ msgid "sahilmakhijani +"
141
+ msgstr ""
142
+
143
+ #: ../../source/changelog/0.9.0-changelog.rst:40
144
+ #: ../../source/changelog/0.9.0-changelog.rst:64
145
+ msgid "sparshg"
146
+ msgstr ""
147
+
148
+ #: ../../source/changelog/0.9.0-changelog.rst:43
149
+ msgid "The patches included in this release have been reviewed by the following contributors."
150
+ msgstr ""
151
+
152
+ #: ../../source/changelog/0.9.0-changelog.rst:46
153
+ msgid "Abhijith Muthyala"
154
+ msgstr ""
155
+
156
+ #: ../../source/changelog/0.9.0-changelog.rst:51
157
+ msgid "Harivinay"
158
+ msgstr ""
159
+
160
+ #: ../../source/changelog/0.9.0-changelog.rst:53
161
+ msgid "Jan-Hendrik Müller"
162
+ msgstr ""
163
+
164
+ #: ../../source/changelog/0.9.0-changelog.rst:57
165
+ msgid "Lino"
166
+ msgstr ""
167
+
168
+ #: ../../source/changelog/0.9.0-changelog.rst:60
169
+ msgid "Raghav Goel"
170
+ msgstr ""
171
+
172
+ #: ../../source/changelog/0.9.0-changelog.rst:61
173
+ msgid "Suhail Sherif"
174
+ msgstr ""
175
+
176
+ #: ../../source/changelog/0.9.0-changelog.rst:62
177
+ msgid "icedcoffeeee"
178
+ msgstr ""
179
+
180
+ #: ../../source/changelog/0.9.0-changelog.rst:63
181
+ msgid "sahilmakhijani"
182
+ msgstr ""
183
+
184
+ #: ../../source/changelog/0.9.0-changelog.rst:67
185
+ msgid "Pull requests merged"
186
+ msgstr ""
187
+
188
+ #: ../../source/changelog/0.9.0-changelog.rst:69
189
+ msgid "A total of 55 pull requests were merged for this release."
190
+ msgstr ""
191
+
192
+ #: ../../source/changelog/0.9.0-changelog.rst:72
193
+ msgid "Highlights"
194
+ msgstr ""
195
+
196
+ #: ../../source/changelog/0.9.0-changelog.rst:75
197
+ msgid ":pr:`1677`: Added a new :class:`~.Table` mobject"
198
+ msgstr ""
199
+
200
+ #: ../../source/changelog/0.9.0-changelog.rst:75
201
+ msgid "This brings easy-to-use and customizable tables to Manim. Several examples for this new mobject can be found at :mod:`the module documentation page <.mobject.table>` and its subpages."
202
+ msgstr ""
203
+
204
+ #: ../../source/changelog/0.9.0-changelog.rst:78
205
+ msgid "Deprecated classes and functions"
206
+ msgstr ""
207
+
208
+ #: ../../source/changelog/0.9.0-changelog.rst:82
209
+ msgid ":pr:`1848`: Deprecated parameters for :class:`~.DashedLine` and :class:`~.DashedVMobject`"
210
+ msgstr ""
211
+
212
+ #: ../../source/changelog/0.9.0-changelog.rst:81
213
+ msgid "``dash_spacing`` is an unused parameter"
214
+ msgstr ""
215
+
216
+ #: ../../source/changelog/0.9.0-changelog.rst:82
217
+ msgid "``positive_space_ratio`` has been replaced with the shorter name ``dashed_ratio``"
218
+ msgstr ""
219
+
220
+ #: ../../source/changelog/0.9.0-changelog.rst:92
221
+ msgid ":pr:`1773`: Remove all classes and functions that were deprecated until ``v0.7.0`` and ``v0.8.0``"
222
+ msgstr ""
223
+
224
+ #: ../../source/changelog/0.9.0-changelog.rst:85
225
+ msgid "The classes ``FadeInFrom``, ``FadeOutAndShift``, ``FadeOutToPoint``, ``FadeInFromPoint``, ``FadeInFromLarge``, ``VFadeIn``, ``VFadeOut``, ``VFadeInThenOut`` have been removed, use :class:`~.FadeIn` or :class:`~.FadeOut` with appropriate keyword arguments instead."
226
+ msgstr ""
227
+
228
+ #: ../../source/changelog/0.9.0-changelog.rst:88
229
+ msgid "The classes ``CircleIndicate``, ``ShowCreationThenDestruction``, ``AnimationOnSurroundingRectangle``, ``ShowPassingFlashAround``, ``ShowCreationThenDestructionAround``, ``ShowCreationThenFadeAround``, ``WiggleOutThenIn``, ``TurnInsideOut`` have been removed. Use :class:`~.Circumscribe`, :class:`~.ShowPassingFlash`, or :class:`~.Wiggle` instead."
230
+ msgstr ""
231
+
232
+ #: ../../source/changelog/0.9.0-changelog.rst:90
233
+ msgid "The classes ``OpenGLTexMobject`` and ``OpenGLTextMobject`` have been removed, use :class:`~.MathTex` and :class:`~.Tex` instead. Also, ``VMobjectFromSVGPathstring`` has been removed, use :class:`~.SVGPathMobject` instead."
234
+ msgstr ""
235
+
236
+ #: ../../source/changelog/0.9.0-changelog.rst:92
237
+ msgid "Finally, the utility functions ``get_norm`` and ``cross`` have been removed (use the corresponding Numpy methods instead), and the function ``angle_between`` has been replaced with ``angle_between_vectors``."
238
+ msgstr ""
239
+
240
+ #: ../../source/changelog/0.9.0-changelog.rst:96
241
+ msgid ":pr:`1731`: Deprecated :class:`~.ParametricSurface` parameters"
242
+ msgstr ""
243
+
244
+ #: ../../source/changelog/0.9.0-changelog.rst:95
245
+ msgid "``u_min`` and ``u_max`` have been replaced by ``u_range``."
246
+ msgstr ""
247
+
248
+ #: ../../source/changelog/0.9.0-changelog.rst:96
249
+ msgid "``v_min`` and ``v_max`` have been replaced by ``v_range``."
250
+ msgstr ""
251
+
252
+ #: ../../source/changelog/0.9.0-changelog.rst:99
253
+ msgid "New features"
254
+ msgstr ""
255
+
256
+ #: ../../source/changelog/0.9.0-changelog.rst:103
257
+ msgid ":pr:`1780`: Allow non-numerical values to be added to :class:`~.NumberLine` and :class:`~.Axes`"
258
+ msgstr ""
259
+
260
+ #: ../../source/changelog/0.9.0-changelog.rst:102
261
+ msgid "Added :meth:`.NumberLine.add_labels` method to :class:`~.NumberLine` which accepts a dictionary of positions/values."
262
+ msgstr ""
263
+
264
+ #: ../../source/changelog/0.9.0-changelog.rst:103
265
+ msgid ":meth:`.CoordinateSystem.add_coordinates` now accepts a dictionary too."
266
+ msgstr ""
267
+
268
+ #: ../../source/changelog/0.9.0-changelog.rst:105
269
+ msgid ":pr:`1719`: Added a :class:`~.Broadcast` animation"
270
+ msgstr ""
271
+
272
+ #: ../../source/changelog/0.9.0-changelog.rst:109
273
+ msgid ":pr:`1765`: Added a static method :meth:`.Circle.from_three_points` for defining a circle from three points"
274
+ msgstr ""
275
+
276
+ #: ../../source/changelog/0.9.0-changelog.rst:109
277
+ msgid "Added a new :func:`~.perpendicular_bisector` function in ``space_ops.py``"
278
+ msgstr ""
279
+
280
+ #: ../../source/changelog/0.9.0-changelog.rst:112
281
+ msgid ":pr:`1686`: Added :meth:`.ParametricSurface.set_fill_by_value`"
282
+ msgstr ""
283
+
284
+ #: ../../source/changelog/0.9.0-changelog.rst:112
285
+ msgid "This method enables a color gradient to be applied to a :class:`~.ParametricSurface`, including the ability to define at which points the colors should be centered."
286
+ msgstr ""
287
+
288
+ #: ../../source/changelog/0.9.0-changelog.rst:115
289
+ msgid "Enhancements"
290
+ msgstr ""
291
+
292
+ #: ../../source/changelog/0.9.0-changelog.rst:117
293
+ msgid ":pr:`1833`: Added OpenGL compatibility for :class:`~.VDict`, :meth:`~.Axes.get_line_graph` and :class:`~.FocusOn`"
294
+ msgstr ""
295
+
296
+ #: ../../source/changelog/0.9.0-changelog.rst:121
297
+ msgid ":pr:`1760`: Added ``window_size`` flag to manually adjust the size of the OpenGL window"
298
+ msgstr ""
299
+
300
+ #: ../../source/changelog/0.9.0-changelog.rst:121
301
+ msgid "Accepts a tuple in the form: ``x,y``."
302
+ msgstr ""
303
+
304
+ #: ../../source/changelog/0.9.0-changelog.rst:124
305
+ msgid ":pr:`1823`: Reworked :class:`~.DashedVMobject`"
306
+ msgstr ""
307
+
308
+ #: ../../source/changelog/0.9.0-changelog.rst:124
309
+ msgid "Rewritten the logic to generate dashes"
310
+ msgstr ""
311
+
312
+ #: ../../source/changelog/0.9.0-changelog.rst:129
313
+ msgid ":pr:`1808`: OpenGL renderer updates"
314
+ msgstr ""
315
+
316
+ #: ../../source/changelog/0.9.0-changelog.rst:127
317
+ msgid "Adds model matrices to all OpenGLVMobjects"
318
+ msgstr ""
319
+
320
+ #: ../../source/changelog/0.9.0-changelog.rst:128
321
+ msgid "Improved performance on vectorized mobject shaders"
322
+ msgstr ""
323
+
324
+ #: ../../source/changelog/0.9.0-changelog.rst:129
325
+ msgid "Added updaters that are part of the scene rather than a mobject"
326
+ msgstr ""
327
+
328
+ #: ../../source/changelog/0.9.0-changelog.rst:132
329
+ msgid ":pr:`1787`: Made :class:`~.DecimalNumber` apply color to the ellipsis"
330
+ msgstr ""
331
+
332
+ #: ../../source/changelog/0.9.0-changelog.rst:132
333
+ msgid "Made color apply to the dots when `show_ellipsis` is set to true in `DecimalNumber`"
334
+ msgstr ""
335
+
336
+ #: ../../source/changelog/0.9.0-changelog.rst:134
337
+ msgid ":pr:`1775`: Let :class:`~.Create` work on :class:`~.OpenGLSurface`"
338
+ msgstr ""
339
+
340
+ #: ../../source/changelog/0.9.0-changelog.rst:137
341
+ msgid ":pr:`1757`: Added warning when there is a large number of items to hash."
342
+ msgstr ""
343
+
344
+ #: ../../source/changelog/0.9.0-changelog.rst:140
345
+ msgid ":pr:`1774`: Add the ``reverse`` parameter to :class:`~.Write`"
346
+ msgstr ""
347
+
348
+ #: ../../source/changelog/0.9.0-changelog.rst:144
349
+ msgid "Fixed bugs"
350
+ msgstr ""
351
+
352
+ #: ../../source/changelog/0.9.0-changelog.rst:146
353
+ msgid ":pr:`1722`: Fixed ``remover=True`` for :class:`~.AnimationGroup`"
354
+ msgstr ""
355
+
356
+ #: ../../source/changelog/0.9.0-changelog.rst:151
357
+ msgid ":pr:`1727`: Fixed some hot reload issues and compatibility with IDEs"
358
+ msgstr ""
359
+
360
+ #: ../../source/changelog/0.9.0-changelog.rst:150
361
+ msgid "Fixed interactive embed issue where it would fail when running on non-tty terminals"
362
+ msgstr ""
363
+
364
+ #: ../../source/changelog/0.9.0-changelog.rst:151
365
+ msgid "Fixed issue where file observer would error after the second run as the first observer was not closed"
366
+ msgstr ""
367
+
368
+ #: ../../source/changelog/0.9.0-changelog.rst:153
369
+ msgid ":pr:`1844`: Fixed the oversized :class:`~.Code` window with the OpenGL renderer"
370
+ msgstr ""
371
+
372
+ #: ../../source/changelog/0.9.0-changelog.rst:159
373
+ msgid ":pr:`1821`: Fixed issues concerning ``frame_center`` in :class:`~.ThreeDScene`"
374
+ msgstr ""
375
+
376
+ #: ../../source/changelog/0.9.0-changelog.rst:157
377
+ msgid "Changing ``frame_center`` in a :class:`~.ThreeDScene` now actually changes the camera position."
378
+ msgstr ""
379
+
380
+ #: ../../source/changelog/0.9.0-changelog.rst:158
381
+ msgid "An animation with only ``frame_center`` animated will now be rendered properly."
382
+ msgstr ""
383
+
384
+ #: ../../source/changelog/0.9.0-changelog.rst:159
385
+ msgid "A black dot is not created at the origin once ``frame_center`` is animated."
386
+ msgstr ""
387
+
388
+ #: ../../source/changelog/0.9.0-changelog.rst:161
389
+ msgid ":pr:`1826`: Fixed scaling issue with :meth:`.BarChart.change_bar_values`"
390
+ msgstr ""
391
+
392
+ #: ../../source/changelog/0.9.0-changelog.rst:164
393
+ msgid ":pr:`1839`: Allow passing arguments to ``.animate`` with the OpenGL renderer"
394
+ msgstr ""
395
+
396
+ #: ../../source/changelog/0.9.0-changelog.rst:167
397
+ msgid ":pr:`1791`: :meth:`~.Mobject.set_z_index` now sets all submobjects' ``z_index`` value"
398
+ msgstr ""
399
+
400
+ #: ../../source/changelog/0.9.0-changelog.rst:170
401
+ msgid ":pr:`1792`: Fixed bug that caused dry runs to fail when using the PNG format"
402
+ msgstr ""
403
+
404
+ #: ../../source/changelog/0.9.0-changelog.rst:173
405
+ msgid ":pr:`1790`: Fixed an import from ``manimlib``"
406
+ msgstr ""
407
+
408
+ #: ../../source/changelog/0.9.0-changelog.rst:176
409
+ msgid ":pr:`1782`: Fixed :class:`~.Tex` not working properly with the OpenGL renderer"
410
+ msgstr ""
411
+
412
+ #: ../../source/changelog/0.9.0-changelog.rst:179
413
+ msgid ":pr:`1783`: Fixed :meth:`~.OpenGLMobject.shuffle` function and added :meth:`~.invert` to OpenGL"
414
+ msgstr ""
415
+
416
+ #: ../../source/changelog/0.9.0-changelog.rst:182
417
+ msgid ":pr:`1786`: Fixed :class:`~.DecimalNumber` not working properly when the number of digits changes"
418
+ msgstr ""
419
+
420
+ #: ../../source/changelog/0.9.0-changelog.rst:185
421
+ msgid ":pr:`1763`: Fixed not being able to set some CLI flags in the configuration file"
422
+ msgstr ""
423
+
424
+ #: ../../source/changelog/0.9.0-changelog.rst:189
425
+ msgid ":pr:`1776`: :meth:`.CoordinateSystem.get_riemann_rectangles` now uses the graph's range instead of the axes range"
426
+ msgstr ""
427
+
428
+ #: ../../source/changelog/0.9.0-changelog.rst:189
429
+ msgid "If no range specified, `get_riemann_rectangles` generates the rectangles only where the area is correctly bounded"
430
+ msgstr ""
431
+
432
+ #: ../../source/changelog/0.9.0-changelog.rst:191
433
+ msgid ":pr:`1770`: Rewrote :meth:`.OpenGLMobject.put_start_and_end_on` to work correctly in 3D"
434
+ msgstr ""
435
+
436
+ #: ../../source/changelog/0.9.0-changelog.rst:194
437
+ msgid ":pr:`1736`: Fixed :class:`~.LinearTransformationScene` crashing on multiple animations"
438
+ msgstr ""
439
+
440
+ #: ../../source/changelog/0.9.0-changelog.rst:198
441
+ msgid "Documentation-related changes"
442
+ msgstr ""
443
+
444
+ #: ../../source/changelog/0.9.0-changelog.rst:200
445
+ msgid ":pr:`1852`: Fixed docs for :meth:`.Coordinate_system.add_coordinates` and moved :class: `~.Code` example"
446
+ msgstr ""
447
+
448
+ #: ../../source/changelog/0.9.0-changelog.rst:206
449
+ msgid ":pr:`1807`: Updated installation instructions"
450
+ msgstr ""
451
+
452
+ #: ../../source/changelog/0.9.0-changelog.rst:204
453
+ msgid "Added a warning about the incompatibility of different versions of Manim in the README"
454
+ msgstr ""
455
+
456
+ #: ../../source/changelog/0.9.0-changelog.rst:205
457
+ msgid "Modified the admonition warning in the documentation"
458
+ msgstr ""
459
+
460
+ #: ../../source/changelog/0.9.0-changelog.rst:206
461
+ msgid "Removed duplicated information from the README (``pip install manim`` is already covered in the docs)"
462
+ msgstr ""
463
+
464
+ #: ../../source/changelog/0.9.0-changelog.rst:208
465
+ msgid ":pr:`1739`: Added a section on creating a custom animation to the \"Manim's building blocks\" tutorial"
466
+ msgstr ""
467
+
468
+ #: ../../source/changelog/0.9.0-changelog.rst:211
469
+ msgid ":pr:`1835`: Updated documentation with information about reworked graphical unit test system"
470
+ msgstr ""
471
+
472
+ #: ../../source/changelog/0.9.0-changelog.rst:214
473
+ msgid ":pr:`1845`: Improve ``ThreeDSurfacePlot`` example in example gallery"
474
+ msgstr ""
475
+
476
+ #: ../../source/changelog/0.9.0-changelog.rst:217
477
+ msgid ":pr:`1842`: Removed instructions on installing Poetry from Developer Installation documentation, reference Poetry's documentation instead"
478
+ msgstr ""
479
+
480
+ #: ../../source/changelog/0.9.0-changelog.rst:220
481
+ msgid ":pr:`1829`: Switch the order of Scoop and Chocolatey in the docs for the Windows Installation"
482
+ msgstr ""
483
+
484
+ #: ../../source/changelog/0.9.0-changelog.rst:223
485
+ msgid ":pr:`1827`: Added ``robots.txt`` to prevent old versions of documentation from showing in search results"
486
+ msgstr ""
487
+
488
+ #: ../../source/changelog/0.9.0-changelog.rst:226
489
+ msgid ":pr:`1819`: Removed mention of ``-h`` CLI flag from documentation"
490
+ msgstr ""
491
+
492
+ #: ../../source/changelog/0.9.0-changelog.rst:229
493
+ msgid ":pr:`1813`: Removed unused variables from tutorial"
494
+ msgstr ""
495
+
496
+ #: ../../source/changelog/0.9.0-changelog.rst:232
497
+ msgid ":pr:`1815`: Added codespell to the list of used linters in the contribution guidelines"
498
+ msgstr ""
499
+
500
+ #: ../../source/changelog/0.9.0-changelog.rst:235
501
+ msgid ":pr:`1778`: Improve sidebar structure of the documentation's reference manual"
502
+ msgstr ""
503
+
504
+ #: ../../source/changelog/0.9.0-changelog.rst:238
505
+ msgid ":pr:`1749`: Added documentation and example for :meth:`.VMobject.set_fill`"
506
+ msgstr ""
507
+
508
+ #: ../../source/changelog/0.9.0-changelog.rst:241
509
+ msgid ":pr:`1743`: Edited the developer installation instructions to include information on cloning the repository"
510
+ msgstr ""
511
+
512
+ #: ../../source/changelog/0.9.0-changelog.rst:244
513
+ msgid ":pr:`1706`: Rework example for :class:`~.Variable`"
514
+ msgstr ""
515
+
516
+ #: ../../source/changelog/0.9.0-changelog.rst:248
517
+ msgid "Changes concerning the testing system"
518
+ msgstr ""
519
+
520
+ #: ../../source/changelog/0.9.0-changelog.rst:250
521
+ msgid ":pr:`1836`: Converted all the graphical tests to the new syntax"
522
+ msgstr ""
523
+
524
+ #: ../../source/changelog/0.9.0-changelog.rst:254
525
+ msgid ":pr:`1802`: Refactored graphical unit testing system, and implemented multi frames tests"
526
+ msgstr ""
527
+
528
+ #: ../../source/changelog/0.9.0-changelog.rst:254
529
+ msgid "This PR introduces a new ``@frames_comparison`` decorator which allows writing simple ``construct``-like functions as tests. Control data for new tests can be easily generated by calling ``pytest --set_test``."
530
+ msgstr ""
531
+
532
+ #: ../../source/changelog/0.9.0-changelog.rst:257
533
+ msgid "Changes to our development infrastructure"
534
+ msgstr ""
535
+
536
+ #: ../../source/changelog/0.9.0-changelog.rst:259
537
+ msgid ":pr:`1830`: Be more concise about the documentation URL in the PR template"
538
+ msgstr ""
539
+
540
+ #: ../../source/changelog/0.9.0-changelog.rst:263
541
+ msgid "Code quality improvements and similar refactors"
542
+ msgstr ""
543
+
544
+ #: ../../source/changelog/0.9.0-changelog.rst:265
545
+ msgid ":pr:`1851`: Renamed ``Tabular`` to :class:`~.Table`"
546
+ msgstr ""
547
+
548
+ #: ../../source/changelog/0.9.0-changelog.rst:268
549
+ msgid ":pr:`1817`: Remove pillow version requirement"
550
+ msgstr ""
551
+
552
+ #: ../../source/changelog/0.9.0-changelog.rst:271
553
+ msgid ":pr:`1806`: Fixed spelling mistake"
554
+ msgstr ""
555
+
556
+ #: ../../source/changelog/0.9.0-changelog.rst:274
557
+ msgid ":pr:`1745`: Updated the BibTeX template in the README to Manim v0.9.0"
558
+ msgstr ""
559
+
560
+ #: ../../source/changelog/0.9.0-changelog.rst:278
561
+ msgid "New releases"
562
+ msgstr ""
563
+
564
+
data/docs/i18n/gettext/conduct.pot ADDED
@@ -0,0 +1,513 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/conduct.md:3
10
+ msgid "Code of Conduct"
11
+ msgstr ""
12
+
13
+ #: ../../source/conduct.md:7
14
+ msgid "TL;DR Be excellent to each other; we're a community after all. If you run into issues with others in our community, please [contact](https://www.manim.community/discord/) a Manim Community Dev, or Moderator."
15
+ msgstr ""
16
+
17
+ #: ../../source/conduct.md:9
18
+ msgid "Purpose"
19
+ msgstr ""
20
+
21
+ #: ../../source/conduct.md:11
22
+ msgid "The Manim Community includes members of varying skills, languages, personalities, cultural backgrounds, and experiences from around the globe. Through these differences, we continue to grow and collectively improve upon an open-source animation engine. When working in a community, it is important to remember that you are interacting with humans on the other end of your screen. This code of conduct will guide your interactions and keep Manim a positive environment for our developers, users, and fundamentally our growing community."
23
+ msgstr ""
24
+
25
+ #: ../../source/conduct.md:15
26
+ msgid "Our Community"
27
+ msgstr ""
28
+
29
+ #: ../../source/conduct.md:17
30
+ msgid "Members of Manim Community are respectful, open, and considerate. Behaviors that reinforce these values contribute to our positive environment, and include:"
31
+ msgstr ""
32
+
33
+ #: ../../source/conduct.md:19
34
+ msgid "**Being respectful.** Respectful of others, their positions, experiences, viewpoints, skills, commitments, time, and efforts."
35
+ msgstr ""
36
+
37
+ #: ../../source/conduct.md:21
38
+ msgid "**Being open.** Open to collaboration, whether it's on problems, Pull Requests, issues, or otherwise."
39
+ msgstr ""
40
+
41
+ #: ../../source/conduct.md:23
42
+ msgid "**Being considerate.** Considerate of their peers -- other Manim users and developers."
43
+ msgstr ""
44
+
45
+ #: ../../source/conduct.md:25
46
+ msgid "**Focusing on what is best for the community.** We're respectful of the processes set forth in the community, and we work within them."
47
+ msgstr ""
48
+
49
+ #: ../../source/conduct.md:27
50
+ msgid "**Showing empathy towards other community members.** We're attentive in our communications, whether in person or online, and we're tactful when approaching differing views."
51
+ msgstr ""
52
+
53
+ #: ../../source/conduct.md:29
54
+ msgid "**Gracefully accepting constructive criticism.** When we disagree, we are courteous in raising our issues."
55
+ msgstr ""
56
+
57
+ #: ../../source/conduct.md:31
58
+ msgid "**Using welcoming and inclusive language.** We're accepting of all who wish to take part in our activities, fostering an environment where anyone can participate and everyone can make a difference."
59
+ msgstr ""
60
+
61
+ #: ../../source/conduct.md:35
62
+ msgid "Our Standards"
63
+ msgstr ""
64
+
65
+ #: ../../source/conduct.md:37
66
+ msgid "Every member of our community has the right to have their identity respected. Manim Community is dedicated to providing a positive environment for everyone, regardless of age, gender identity and expression, sexual orientation, disability, physical appearance, body size, ethnicity, nationality, race, religion (or lack thereof), education, or socioeconomic status."
67
+ msgstr ""
68
+
69
+ #: ../../source/conduct.md:41
70
+ msgid "Inappropriate Behavior"
71
+ msgstr ""
72
+
73
+ #: ../../source/conduct.md:43
74
+ msgid "Examples of unacceptable behavior by participants include:"
75
+ msgstr ""
76
+
77
+ #: ../../source/conduct.md:45
78
+ msgid "Harassment of any participants in any form"
79
+ msgstr ""
80
+
81
+ #: ../../source/conduct.md:46
82
+ msgid "Deliberate intimidation, stalking, or following"
83
+ msgstr ""
84
+
85
+ #: ../../source/conduct.md:47
86
+ msgid "Logging or taking screenshots of online activity for harassment purposes"
87
+ msgstr ""
88
+
89
+ #: ../../source/conduct.md:48
90
+ msgid "Publishing others' private information, such as a physical or electronic address, without explicit permission"
91
+ msgstr ""
92
+
93
+ #: ../../source/conduct.md:49
94
+ msgid "Violent threats or language directed against another person"
95
+ msgstr ""
96
+
97
+ #: ../../source/conduct.md:50
98
+ msgid "Incitement of violence or harassment towards any individual, including encouraging a person to commit suicide or to engage in self-harm"
99
+ msgstr ""
100
+
101
+ #: ../../source/conduct.md:51
102
+ msgid "Creating additional online accounts in order to harass another person or circumvent a ban"
103
+ msgstr ""
104
+
105
+ #: ../../source/conduct.md:52
106
+ msgid "Sexual language and imagery in online communities or any conference venue, including talks"
107
+ msgstr ""
108
+
109
+ #: ../../source/conduct.md:53
110
+ msgid "Insults, put-downs, or jokes that are based upon stereotypes, that are exclusionary, or that hold others up for ridicule"
111
+ msgstr ""
112
+
113
+ #: ../../source/conduct.md:54
114
+ msgid "Excessive swearing"
115
+ msgstr ""
116
+
117
+ #: ../../source/conduct.md:55
118
+ msgid "Unwelcome sexual attention or advances"
119
+ msgstr ""
120
+
121
+ #: ../../source/conduct.md:56
122
+ msgid "Unwelcome physical contact, including simulated physical contact (eg, textual descriptions like \"hug\" or \"backrub\") without consent or after a request to stop"
123
+ msgstr ""
124
+
125
+ #: ../../source/conduct.md:57
126
+ msgid "Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others"
127
+ msgstr ""
128
+
129
+ #: ../../source/conduct.md:58
130
+ msgid "Sustained disruption of online community discussions, in-person presentations, or other in-person events"
131
+ msgstr ""
132
+
133
+ #: ../../source/conduct.md:59
134
+ msgid "Continued one-on-one communication after requests to cease"
135
+ msgstr ""
136
+
137
+ #: ../../source/conduct.md:60
138
+ msgid "Other conduct that is inappropriate for a professional audience including people of many different backgrounds Community members asked to stop any inappropriate behavior are expected to comply immediately."
139
+ msgstr ""
140
+
141
+ #: ../../source/conduct.md:65
142
+ msgid "Manim Community Online Spaces"
143
+ msgstr ""
144
+
145
+ #: ../../source/conduct.md:67
146
+ msgid "This Code of Conduct applies to the following online spaces:"
147
+ msgstr ""
148
+
149
+ #: ../../source/conduct.md:69
150
+ msgid "The [ManimCommunity GitHub Organization](https://github.com/ManimCommunity) and all of its repositories"
151
+ msgstr ""
152
+
153
+ #: ../../source/conduct.md:71
154
+ msgid "The Manim [Discord](https://www.manim.community/discord/)"
155
+ msgstr ""
156
+
157
+ #: ../../source/conduct.md:73
158
+ msgid "The Manim [Reddit](https://www.reddit.com/r/manim/)"
159
+ msgstr ""
160
+
161
+ #: ../../source/conduct.md:75
162
+ msgid "The Manim [Twitter](https://twitter.com/manim\\_community/)"
163
+ msgstr ""
164
+
165
+ #: ../../source/conduct.md:77
166
+ msgid "This Code of Conduct applies to every member in official Manim Community online spaces, including:"
167
+ msgstr ""
168
+
169
+ #: ../../source/conduct.md:79
170
+ msgid "Moderators"
171
+ msgstr ""
172
+
173
+ #: ../../source/conduct.md:81
174
+ msgid "Maintainers"
175
+ msgstr ""
176
+
177
+ #: ../../source/conduct.md:83
178
+ msgid "Developers"
179
+ msgstr ""
180
+
181
+ #: ../../source/conduct.md:85
182
+ msgid "Reviewers"
183
+ msgstr ""
184
+
185
+ #: ../../source/conduct.md:87
186
+ msgid "Contributors"
187
+ msgstr ""
188
+
189
+ #: ../../source/conduct.md:89
190
+ msgid "Users"
191
+ msgstr ""
192
+
193
+ #: ../../source/conduct.md:91
194
+ msgid "All community members"
195
+ msgstr ""
196
+
197
+ #: ../../source/conduct.md:95
198
+ msgid "Consequences"
199
+ msgstr ""
200
+
201
+ #: ../../source/conduct.md:97
202
+ msgid "If a member's behavior violates this code of conduct, the Manim Community Code of Conduct team may take any action they deem appropriate, including, but not limited to: warning the offender, temporary bans, deletion of offending messages, and expulsion from the community and its online spaces. The full list of consequences for inappropriate behavior is listed below in the Enforcement Procedures."
203
+ msgstr ""
204
+
205
+ #: ../../source/conduct.md:101
206
+ msgid "Thank you for helping make this a welcoming, friendly community for everyone."
207
+ msgstr ""
208
+
209
+ #: ../../source/conduct.md:105
210
+ msgid "Contact Information"
211
+ msgstr ""
212
+
213
+ #: ../../source/conduct.md:107
214
+ msgid "If you believe someone is violating the code of conduct, or have any other concerns, please contact a Manim Community Dev, or Moderator immediately. They can be reached on Manim's Community [Discord](https://www.manim.community/discord/)."
215
+ msgstr ""
216
+
217
+ #: ../../source/conduct.md:117
218
+ msgid "Enforcement Procedures"
219
+ msgstr ""
220
+
221
+ #: ../../source/conduct.md:119
222
+ msgid "This document summarizes the procedures the Manim Community Code of Conduct team uses to enforce the Code of Conduct."
223
+ msgstr ""
224
+
225
+ #: ../../source/conduct.md:123
226
+ msgid "Summary of processes"
227
+ msgstr ""
228
+
229
+ #: ../../source/conduct.md:125
230
+ msgid "When the team receives a report of a possible Code of Conduct violation, it will:"
231
+ msgstr ""
232
+
233
+ #: ../../source/conduct.md:127
234
+ msgid "Acknowledge the receipt of the report."
235
+ msgstr ""
236
+
237
+ #: ../../source/conduct.md:128
238
+ msgid "Evaluate conflicts of interest."
239
+ msgstr ""
240
+
241
+ #: ../../source/conduct.md:129
242
+ msgid "Call a meeting of code of conduct team members without a conflict of interest."
243
+ msgstr ""
244
+
245
+ #: ../../source/conduct.md:130
246
+ msgid "Evaluate the reported incident."
247
+ msgstr ""
248
+
249
+ #: ../../source/conduct.md:131
250
+ msgid "Propose a behavioral modification plan."
251
+ msgstr ""
252
+
253
+ #: ../../source/conduct.md:132
254
+ msgid "Propose consequences for the reported behavior."
255
+ msgstr ""
256
+
257
+ #: ../../source/conduct.md:133
258
+ msgid "Vote on behavioral modification plan and consequences for the reported person."
259
+ msgstr ""
260
+
261
+ #: ../../source/conduct.md:134
262
+ msgid "Contact Manim Community moderators to approve the behavioral modification plan and consequences."
263
+ msgstr ""
264
+
265
+ #: ../../source/conduct.md:135
266
+ msgid "Follow up with the reported person."
267
+ msgstr ""
268
+
269
+ #: ../../source/conduct.md:136
270
+ msgid "Decide further responses."
271
+ msgstr ""
272
+
273
+ #: ../../source/conduct.md:137
274
+ msgid "Follow up with the reporter."
275
+ msgstr ""
276
+
277
+ #: ../../source/conduct.md:140
278
+ msgid "Acknowledge the report"
279
+ msgstr ""
280
+
281
+ #: ../../source/conduct.md:142
282
+ msgid "Reporters should receive an acknowledgment of the receipt of their report within 48 hours."
283
+ msgstr ""
284
+
285
+ #: ../../source/conduct.md:146
286
+ msgid "Conflict of interest policy"
287
+ msgstr ""
288
+
289
+ #: ../../source/conduct.md:148
290
+ msgid "Examples of conflicts of interest include:"
291
+ msgstr ""
292
+
293
+ #: ../../source/conduct.md:150
294
+ msgid "You have a romantic or platonic relationship with either the reporter or the reported person. It's fine to participate if they are an acquaintance."
295
+ msgstr ""
296
+
297
+ #: ../../source/conduct.md:151
298
+ msgid "The reporter or reported person is someone you work closely with. This could be someone on your team or someone who works on the same project as you."
299
+ msgstr ""
300
+
301
+ #: ../../source/conduct.md:152
302
+ msgid "The reporter or reported person is a maintainer who regularly reviews your contributions"
303
+ msgstr ""
304
+
305
+ #: ../../source/conduct.md:153
306
+ msgid "The reporter or reported person is your metamour."
307
+ msgstr ""
308
+
309
+ #: ../../source/conduct.md:154
310
+ msgid "The reporter or reported person is your family member Committee members do not need to state why they have a conflict of interest, only that one exists. Other team members should not ask why the person has a conflict of interest."
311
+ msgstr ""
312
+
313
+ #: ../../source/conduct.md:157
314
+ msgid "Anyone who has a conflict of interest will remove themselves from the discussion of the incident, and recluse themselves from voting on a response to the report."
315
+ msgstr ""
316
+
317
+ #: ../../source/conduct.md:161
318
+ msgid "Evaluating a report"
319
+ msgstr ""
320
+
321
+ #: ../../source/conduct.md:163
322
+ msgid "Jurisdiction"
323
+ msgstr ""
324
+
325
+ #: ../../source/conduct.md:165
326
+ msgid "*Is this a Code of Conduct violation?* Is this behavior on our list of inappropriate behavior? Is it borderline inappropriate behavior? Does it violate our community norms?"
327
+ msgstr ""
328
+
329
+ #: ../../source/conduct.md:166
330
+ msgid "*Did this occur in a space that is within our Code of Conduct's scope?* If the incident occurred outside the community, but a community member's mental health or physical safety may be negatively impacted if no action is taken, the incident may be in scope. Private conversations in community spaces are also in scope."
331
+ msgstr ""
332
+
333
+ #: ../../source/conduct.md:167
334
+ msgid "Impact"
335
+ msgstr ""
336
+
337
+ #: ../../source/conduct.md:169
338
+ msgid "*Did this incident occur in a private conversation or a public space?* Incidents that all community members can see will have a more negative impact."
339
+ msgstr ""
340
+
341
+ #: ../../source/conduct.md:170
342
+ msgid "*Does this behavior negatively impact a marginalized group in our community?* Is the reporter a person from a marginalized group in our community? How is the reporter being negatively impacted by the reported person's behavior? Are members of the marginalized group likely to disengage with the community if no action was taken on this report?"
343
+ msgstr ""
344
+
345
+ #: ../../source/conduct.md:171
346
+ msgid "*Does this incident involve a community leader?* Community members often look up to community leaders to set the standard of acceptable behavior"
347
+ msgstr ""
348
+
349
+ #: ../../source/conduct.md:172
350
+ msgid "Risk"
351
+ msgstr ""
352
+
353
+ #: ../../source/conduct.md:174
354
+ msgid "*Does this incident include sexual harassment?*"
355
+ msgstr ""
356
+
357
+ #: ../../source/conduct.md:175
358
+ msgid "*Does this pose a safety risk?* Does the behavior put a person's physical safety at risk? Will this incident severely negatively impact someone's mental health?"
359
+ msgstr ""
360
+
361
+ #: ../../source/conduct.md:176
362
+ msgid "*Is there a risk of this behavior being repeated?* Does the reported person understand why their behavior was inappropriate? Is there an established pattern of behavior from past reports?"
363
+ msgstr ""
364
+
365
+ #: ../../source/conduct.md:179
366
+ msgid "Reports which involve higher risk or higher impact may face more severe consequences than reports which involve lower risk or lower impact."
367
+ msgstr ""
368
+
369
+ #: ../../source/conduct.md:183
370
+ msgid "Propose consequences"
371
+ msgstr ""
372
+
373
+ #: ../../source/conduct.md:185
374
+ msgid "What follows are examples of possible consequences of an incident report. This list of consequences is not exhaustive, and the Manim Community Code of Conduct team reserves the right to take any action it deems necessary."
375
+ msgstr ""
376
+
377
+ #: ../../source/conduct.md:187
378
+ msgid "Possible private responses to an incident include:"
379
+ msgstr ""
380
+
381
+ #: ../../source/conduct.md:189
382
+ msgid "Nothing, if the behavior was determined to not be a Code of Conduct violation"
383
+ msgstr ""
384
+
385
+ #: ../../source/conduct.md:190
386
+ msgid "A warning"
387
+ msgstr ""
388
+
389
+ #: ../../source/conduct.md:191
390
+ msgid "A final warning"
391
+ msgstr ""
392
+
393
+ #: ../../source/conduct.md:192
394
+ msgid "Temporarily removing the reported person from the community's online space(s)"
395
+ msgstr ""
396
+
397
+ #: ../../source/conduct.md:193
398
+ msgid "Permanently removing the reported person from the community's online space(s)"
399
+ msgstr ""
400
+
401
+ #: ../../source/conduct.md:194
402
+ msgid "Publishing an account of the incident"
403
+ msgstr ""
404
+
405
+ #: ../../source/conduct.md:197
406
+ msgid "Team vote"
407
+ msgstr ""
408
+
409
+ #: ../../source/conduct.md:199
410
+ msgid "Some team members may have a conflict of interest and may be excluded from discussions of a particular incident report. Excluding those members, decisions on the behavioral modification plans and consequences will be determined by a two-thirds majority vote of the Manim Community Code of Conduct team."
411
+ msgstr ""
412
+
413
+ #: ../../source/conduct.md:203
414
+ msgid "Moderators approval"
415
+ msgstr ""
416
+
417
+ #: ../../source/conduct.md:205
418
+ msgid "Once the team has approved the behavioral modification plans and consequences, they will communicate the recommended response to the Manim Community moderators. The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report."
419
+ msgstr ""
420
+
421
+ #: ../../source/conduct.md:207
422
+ msgid "Moderators are required to respond with whether they accept the recommended response to the report. If they disagree with the recommended response, they should provide a detailed response or additional context as to why they disagree. Moderators are encouraged to respond within a week."
423
+ msgstr ""
424
+
425
+ #: ../../source/conduct.md:209
426
+ msgid "In cases where the moderators disagree on the suggested resolution for a report, the Manim Community Code of Conduct team may choose to notify the Manim Community Moderators."
427
+ msgstr ""
428
+
429
+ #: ../../source/conduct.md:213
430
+ msgid "Follow up with the reported person"
431
+ msgstr ""
432
+
433
+ #: ../../source/conduct.md:215
434
+ msgid "The Manim Community Code of Conduct team will work with Manim Community moderators to draft a response to the reported person. The response should contain:"
435
+ msgstr ""
436
+
437
+ #: ../../source/conduct.md:217
438
+ msgid "A description of the person's behavior in neutral language"
439
+ msgstr ""
440
+
441
+ #: ../../source/conduct.md:218
442
+ msgid "The negative impact of that behavior"
443
+ msgstr ""
444
+
445
+ #: ../../source/conduct.md:219
446
+ msgid "A concrete behavioral modification plan"
447
+ msgstr ""
448
+
449
+ #: ../../source/conduct.md:220
450
+ msgid "Any consequences of their behavior The team should not state who reported this incident. They should attempt to anonymize any identifying information from the report. The reported person should be discouraged from contacting the reporter to discuss the report. If they wish to apologize to the reporter, the team can accept the apology on behalf of the reporter."
451
+ msgstr ""
452
+
453
+ #: ../../source/conduct.md:225
454
+ msgid "Decide further responses"
455
+ msgstr ""
456
+
457
+ #: ../../source/conduct.md:227
458
+ msgid "If the reported person provides additional context, the Manim Community Code of Conduct team may need to re-evaluate the behavioral modification plan and consequences."
459
+ msgstr ""
460
+
461
+ #: ../../source/conduct.md:229
462
+ msgid "Follow up with the reporter"
463
+ msgstr ""
464
+
465
+ #: ../../source/conduct.md:231
466
+ msgid "A person who makes a report should receive a follow-up response stating what action was taken in response to the report. If the team decided no response was needed, they should provide an explanation why it was not a Code of Conduct violation. Reports that are not made in good faith (such as \"reverse sexism\" or \"reverse racism\") may receive no response."
467
+ msgstr ""
468
+
469
+ #: ../../source/conduct.md:233
470
+ msgid "The follow-up should be sent no later than one week after the receipt of the report. If deliberation or follow-up with the reported person takes longer than one week, the team should send a status update to the reporter."
471
+ msgstr ""
472
+
473
+ #: ../../source/conduct.md:237
474
+ msgid "Changes to Code of Conduct"
475
+ msgstr ""
476
+
477
+ #: ../../source/conduct.md:239
478
+ msgid "When discussing a change to the Manim Community code of conduct or enforcement procedures, the Manim Community Code of Conduct team will follow this decision-making process:"
479
+ msgstr ""
480
+
481
+ #: ../../source/conduct.md:241
482
+ msgid "**Brainstorm options.** Team members should discuss any relevant context and brainstorm a set of possible options. It is important to provide constructive feedback without getting side-tracked from the main question."
483
+ msgstr ""
484
+
485
+ #: ../../source/conduct.md:242
486
+ msgid "**Vote.** Proposed changes to the code of conduct will be decided by a two-thirds majority of all voting members of the Code of Conduct team. Team members are listed in the charter. Currently active voting members are listed in the following section."
487
+ msgstr ""
488
+
489
+ #: ../../source/conduct.md:243
490
+ msgid "**Board Vote.** Once a working draft is in place for the Code of Conduct and procedures, the Code of Conduct team shall provide the Manim Community Moderators with a draft of the changes. The Manim Community Moderators will vote on the changes at a board meeting."
491
+ msgstr ""
492
+
493
+ #: ../../source/conduct.md:246
494
+ msgid "Current list of voting members"
495
+ msgstr ""
496
+
497
+ #: ../../source/conduct.md:248
498
+ msgid "All available Community Developers (i.e. those with \"write\" permissions, or above, on the Manim Community GitHub organization)."
499
+ msgstr ""
500
+
501
+ #: ../../source/conduct.md:252
502
+ msgid "License"
503
+ msgstr ""
504
+
505
+ #: ../../source/conduct.md:254
506
+ msgid "This Code of Conduct is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](https://creativecommons.org/licenses/by-sa/3.0/)."
507
+ msgstr ""
508
+
509
+ #: ../../source/conduct.md:258
510
+ msgid "Attributions"
511
+ msgstr ""
512
+
513
+
data/docs/i18n/gettext/contributing.pot ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/contributing.rst:3
10
+ msgid "Contributing"
11
+ msgstr ""
12
+
13
+ #: ../../source/contributing.rst:5
14
+ msgid "Manim is currently undergoing a major refactor. In general, contributions implementing new features will not be accepted in this period. Other contributions unrelated to cleaning up the codebase may also take a longer period of time to be reviewed. This guide may quickly become outdated quickly; we highly recommend joining our `Discord server <https://www.manim.community/discord/>`__ to discuss any potential contributions and keep up to date with the latest developments."
15
+ msgstr ""
16
+
17
+ #: ../../source/contributing.rst:12
18
+ msgid "Thank you for your interest in contributing to Manim! However you have decided to contribute or interact with the community, please always be civil and respect other members of the community. If you haven't read our :doc:`code of conduct<conduct>`, do so here. Manim is Free and Open Source Software (FOSS) for mathematical animations. As such, **we welcome everyone** who is interested in mathematics, pedagogy, computer animations, open-source, software development, and beyond. Manim accepts many kinds of contributions, some are detailed below:"
19
+ msgstr ""
20
+
21
+ #: ../../source/contributing.rst:21
22
+ msgid "Code maintenance and development"
23
+ msgstr ""
24
+
25
+ #: ../../source/contributing.rst:22
26
+ msgid "DevOps"
27
+ msgstr ""
28
+
29
+ #: ../../source/contributing.rst:23
30
+ msgid "Documentation"
31
+ msgstr ""
32
+
33
+ #: ../../source/contributing.rst:24
34
+ msgid "Developing educational content & narrative documentation"
35
+ msgstr ""
36
+
37
+ #: ../../source/contributing.rst:25
38
+ msgid "Plugins to extend Manim functionality"
39
+ msgstr ""
40
+
41
+ #: ../../source/contributing.rst:26
42
+ msgid "Testing (graphical, unit & video)"
43
+ msgstr ""
44
+
45
+ #: ../../source/contributing.rst:27
46
+ msgid "Website design and development"
47
+ msgstr ""
48
+
49
+ #: ../../source/contributing.rst:28
50
+ msgid "Translating documentation and docstrings"
51
+ msgstr ""
52
+
53
+ #: ../../source/contributing.rst:30
54
+ msgid "To get an overview of what our community is currently working on, check out `our development project board <https://github.com/orgs/ManimCommunity/projects/7/views/1>`__."
55
+ msgstr ""
56
+
57
+ #: ../../source/contributing.rst:34
58
+ msgid "Please ensure that you are reading the latest version of this guide by ensuring that \"latest\" is selected in the version switcher."
59
+ msgstr ""
60
+
61
+
data/docs/i18n/gettext/contributing/admonitions.pot ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/contributing/admonitions.rst:3
10
+ msgid "Adding Admonitions"
11
+ msgstr ""
12
+
13
+ #: ../../source/contributing/admonitions.rst:6
14
+ msgid "Adding Blocks for Tip, Note, Important etc. (Admonitions)"
15
+ msgstr ""
16
+
17
+ #: ../../source/contributing/admonitions.rst:8
18
+ msgid "The following directives are called Admonitions. You can use them to point out additional or important information. Here are some examples:"
19
+ msgstr ""
20
+
21
+ #: ../../source/contributing/admonitions.rst:13
22
+ msgid "See also"
23
+ msgstr ""
24
+
25
+ #: ../../source/contributing/admonitions.rst:21
26
+ msgid "Some ideas at :mod:`~.tex_mobject`, :class:`~.Mobject`, :meth:`~.Mobject.add_updater`, :attr:`~.Mobject.depth`, :func:`~.make_config_parser`"
27
+ msgstr ""
28
+
29
+ #: ../../source/contributing/admonitions.rst:28
30
+ msgid "Note"
31
+ msgstr ""
32
+
33
+ #: ../../source/contributing/admonitions.rst:36
34
+ msgid "A note"
35
+ msgstr ""
36
+
37
+ #: ../../source/contributing/admonitions.rst:39
38
+ msgid "Tip"
39
+ msgstr ""
40
+
41
+ #: ../../source/contributing/admonitions.rst:47
42
+ msgid "A tip"
43
+ msgstr ""
44
+
45
+ #: ../../source/contributing/admonitions.rst:49
46
+ msgid "You may also use the admonition **hint**, but this is very similar and **tip** is more commonly used in the documentation."
47
+ msgstr ""
48
+
49
+ #: ../../source/contributing/admonitions.rst:53
50
+ msgid "Important"
51
+ msgstr ""
52
+
53
+ #: ../../source/contributing/admonitions.rst:61
54
+ msgid "Some important information which should be considered."
55
+ msgstr ""
56
+
57
+ #: ../../source/contributing/admonitions.rst:64
58
+ msgid "Warning"
59
+ msgstr ""
60
+
61
+ #: ../../source/contributing/admonitions.rst:72
62
+ msgid "Some text pointing out something that people should be warned about."
63
+ msgstr ""
64
+
65
+ #: ../../source/contributing/admonitions.rst:74
66
+ msgid "You may also use the admonitions **caution** or even **danger** if the severity of the warning must be stressed."
67
+ msgstr ""
68
+
69
+ #: ../../source/contributing/admonitions.rst:78
70
+ msgid "Attention"
71
+ msgstr ""
72
+
73
+ #: ../../source/contributing/admonitions.rst:86
74
+ msgid "A attention"
75
+ msgstr ""
76
+
77
+
data/docs/i18n/gettext/contributing/development.pot ADDED
@@ -0,0 +1,277 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/contributing/development.rst:3
10
+ msgid "Manim Development Process"
11
+ msgstr ""
12
+
13
+ #: ../../source/contributing/development.rst:6
14
+ msgid "For first-time contributors"
15
+ msgstr ""
16
+
17
+ #: ../../source/contributing/development.rst:7
18
+ msgid "Install git:"
19
+ msgstr ""
20
+
21
+ #: ../../source/contributing/development.rst:9
22
+ msgid "For instructions see https://git-scm.com/."
23
+ msgstr ""
24
+
25
+ #: ../../source/contributing/development.rst:12
26
+ msgid "Fork the project. Go to https://github.com/ManimCommunity/manim and click the \"fork\" button to create a copy of the project for you to work on. You will need a GitHub account. This will allow you to make a \"Pull Request\" (PR) to the ManimCommunity repo later on."
27
+ msgstr ""
28
+
29
+ #: ../../source/contributing/development.rst:17
30
+ msgid "Clone your fork to your local computer:"
31
+ msgstr ""
32
+
33
+ #: ../../source/contributing/development.rst:23
34
+ msgid "GitHub will provide both a SSH (``git@github.com:<your-username>/manim.git``) and HTTPS (``https://github.com/<your-username>/manim.git``) URL for cloning. You can use SSH if you have SSH keys setup."
35
+ msgstr ""
36
+
37
+ #: ../../source/contributing/development.rst:29
38
+ msgid "Do not clone the ManimCommunity repository. You must clone your own fork."
39
+ msgstr ""
40
+
41
+ #: ../../source/contributing/development.rst:32
42
+ msgid "Change the directory to enter the project folder:"
43
+ msgstr ""
44
+
45
+ #: ../../source/contributing/development.rst:38
46
+ msgid "Add the upstream repository, ManimCommunity:"
47
+ msgstr ""
48
+
49
+ #: ../../source/contributing/development.rst:44
50
+ msgid "Now, ``git remote -v`` should show two remote repositories named:"
51
+ msgstr ""
52
+
53
+ #: ../../source/contributing/development.rst:46
54
+ msgid "``origin``, your forked repository"
55
+ msgstr ""
56
+
57
+ #: ../../source/contributing/development.rst:47
58
+ msgid "``upstream`` the ManimCommunity repository"
59
+ msgstr ""
60
+
61
+ #: ../../source/contributing/development.rst:49
62
+ msgid "Install Manim:"
63
+ msgstr ""
64
+
65
+ #: ../../source/contributing/development.rst:51
66
+ msgid "Follow the steps in our :doc:`installation instructions <../installation>` to install **Manim's dependencies**, primarily ``ffmpeg`` and ``LaTeX``."
67
+ msgstr ""
68
+
69
+ #: ../../source/contributing/development.rst:55
70
+ msgid "We recommend using `Poetry <https://python-poetry.org>`__ to manage your developer installation of Manim. Poetry is a tool for dependency management and packaging in Python. It allows you to declare the libraries your project depends on, and it will manage (install / update) them for you. In addition, Poetry provides a simple interface for managing virtual environments."
71
+ msgstr ""
72
+
73
+ #: ../../source/contributing/development.rst:62
74
+ msgid "If you choose to use Poetry as well, follow `Poetry's installation guidelines <https://python-poetry.org/docs/master/#installation>`__ to install it on your system, then run ``poetry install`` from your cloned repository. Poetry will then install Manim, as well as create and enter a virtual environment. You can always re-enter that environment by running ``poetry shell``."
75
+ msgstr ""
76
+
77
+ #: ../../source/contributing/development.rst:69
78
+ msgid "In case you want to install extra dependencies that are defined in the ``[tool.poetry.extras]`` section of ``pyproject.toml``, this can be done by passing the ``-E`` flag, for example ``poetry install -E jupyterlab -E gui``."
79
+ msgstr ""
80
+
81
+ #: ../../source/contributing/development.rst:73
82
+ msgid "In case you decided against Poetry, you can install Manim via pip by running ``python3 -m pip install .``. Note that due to our development infrastructure being based on Poetry, we currently do not support editable installs via ``pip``, so you will have to re-run this command every time you make changes to the source code."
83
+ msgstr ""
84
+
85
+ #: ../../source/contributing/development.rst:82
86
+ msgid "The following steps assume that you chose to install and work with Poetry."
87
+ msgstr ""
88
+
89
+ #: ../../source/contributing/development.rst:85
90
+ msgid "Install Pre-Commit:"
91
+ msgstr ""
92
+
93
+ #: ../../source/contributing/development.rst:91
94
+ msgid "This will ensure during development that each of your commits is properly formatted against our linter and formatters, ``black``, ``flake8``, ``isort`` and ``codespell``."
95
+ msgstr ""
96
+
97
+ #: ../../source/contributing/development.rst:95
98
+ msgid "You are now ready to work on manim!"
99
+ msgstr ""
100
+
101
+ #: ../../source/contributing/development.rst:98
102
+ msgid "Develop your contribution"
103
+ msgstr ""
104
+
105
+ #: ../../source/contributing/development.rst:100
106
+ msgid "Checkout your local repository's main branch and pull the latest changes from ManimCommunity, ``upstream``, into your local repository:"
107
+ msgstr ""
108
+
109
+ #: ../../source/contributing/development.rst:108
110
+ msgid "Create a branch for the changes you want to work on rather than working off of your local main branch:"
111
+ msgstr ""
112
+
113
+ #: ../../source/contributing/development.rst:115
114
+ msgid "This ensures you can easily update your local repository's main with the first step and switch branches to work on multiple features."
115
+ msgstr ""
116
+
117
+ #: ../../source/contributing/development.rst:118
118
+ msgid "Write some awesome code!"
119
+ msgstr ""
120
+
121
+ #: ../../source/contributing/development.rst:120
122
+ msgid "You're ready to make changes in your local repository's branch. You can add local files you've changed within the current directory with ``git add .``, or add specific files with"
123
+ msgstr ""
124
+
125
+ #: ../../source/contributing/development.rst:128
126
+ msgid "and commit these changes to your local history with ``git commit``. If you have installed pre-commit, your commit will succeed only if none of the hooks fail."
127
+ msgstr ""
128
+
129
+ #: ../../source/contributing/development.rst:134
130
+ msgid "When crafting commit messages, it is highly recommended that you adhere to `these guidelines <https://www.conventionalcommits.org/en/v1.0.0/>`_."
131
+ msgstr ""
132
+
133
+ #: ../../source/contributing/development.rst:137
134
+ msgid "Add new or update existing tests."
135
+ msgstr ""
136
+
137
+ #: ../../source/contributing/development.rst:139
138
+ msgid "Depending on your changes, you may need to update or add new tests. For new features, it is required that you include tests with your PR. Details of our testing system are explained in the :doc:`testing guide <testing>`."
139
+ msgstr ""
140
+
141
+ #: ../../source/contributing/development.rst:144
142
+ msgid "Update docstrings and documentation:"
143
+ msgstr ""
144
+
145
+ #: ../../source/contributing/development.rst:146
146
+ msgid "Update the docstrings (the text in triple quotation marks) of any functions or classes you change and include them with any new functions you add. See the :doc:`documentation guide <docstrings>` for more information about how we prefer our code to be documented. The content of the docstrings will be rendered in the :doc:`reference manual <../reference>`."
147
+ msgstr ""
148
+
149
+ #: ../../source/contributing/development.rst:154
150
+ msgid "Use the :mod:`manim directive for Sphinx <manim.utils.docbuild.manim_directive>` to add examples to the documentation!"
151
+ msgstr ""
152
+
153
+ #: ../../source/contributing/development.rst:157
154
+ msgid "As far as development on your local machine goes, these are the main steps you should follow."
155
+ msgstr ""
156
+
157
+ #: ../../source/contributing/development.rst:161
158
+ msgid "Polishing Changes and Submitting a Pull Request"
159
+ msgstr ""
160
+
161
+ #: ../../source/contributing/development.rst:163
162
+ msgid "As soon as you are ready to share your local changes with the community so that they can be discussed, go through the following steps to open a pull request. A pull request signifies to the ManimCommunity organization, \"Here are some changes I wrote; I think it's worthwhile for you to maintain them.\""
163
+ msgstr ""
164
+
165
+ #: ../../source/contributing/development.rst:171
166
+ msgid "You do not need to have everything (code/documentation/tests) complete to open a pull request (PR). If the PR is still under development, please mark it as a draft. Community developers will still be able to review the changes, discuss yet-to-be-implemented changes, and offer advice; however, the more complete your PR, the quicker it will be merged."
167
+ msgstr ""
168
+
169
+ #: ../../source/contributing/development.rst:177
170
+ msgid "Update your fork on GitHub to reflect your local changes:"
171
+ msgstr ""
172
+
173
+ #: ../../source/contributing/development.rst:183
174
+ msgid "Doing so creates a new branch on your remote fork, ``origin``, with the contents of your local repository on GitHub. In subsequent pushes, this local branch will track the branch ``origin`` and ``git push`` is enough."
175
+ msgstr ""
176
+
177
+ #: ../../source/contributing/development.rst:188
178
+ msgid "Make a pull request (PR) on GitHub."
179
+ msgstr ""
180
+
181
+ #: ../../source/contributing/development.rst:190
182
+ msgid "In order to make the ManimCommunity development team aware of your changes, you can make a PR to the ManimCommunity repository from your fork."
183
+ msgstr ""
184
+
185
+ #: ../../source/contributing/development.rst:195
186
+ msgid "Make sure to select ``ManimCommunity/manim`` instead of ``3b1b/manim`` as the base repository!"
187
+ msgstr ""
188
+
189
+ #: ../../source/contributing/development.rst:198
190
+ msgid "Choose the branch from your fork as the head repository - see the screenshot below."
191
+ msgstr ""
192
+
193
+ #: ../../source/contributing/development.rst:204
194
+ msgid "Please make sure you follow the template (this is the default text you are shown when first opening the 'New Pull Request' page)."
195
+ msgstr ""
196
+
197
+ #: ../../source/contributing/development.rst:208
198
+ msgid "Your changes are eligible to be merged if:"
199
+ msgstr ""
200
+
201
+ #: ../../source/contributing/development.rst:210
202
+ msgid "there are no merge conflicts"
203
+ msgstr ""
204
+
205
+ #: ../../source/contributing/development.rst:211
206
+ msgid "the tests in our pipeline pass"
207
+ msgstr ""
208
+
209
+ #: ../../source/contributing/development.rst:212
210
+ msgid "at least one (two for more complex changes) Community Developer approves the changes"
211
+ msgstr ""
212
+
213
+ #: ../../source/contributing/development.rst:214
214
+ msgid "You can check for merge conflicts between the current upstream/main and your branch by executing ``git pull upstream main`` locally. If this generates any merge conflicts, you need to resolve them and push an updated version of the branch to your fork of the repository."
215
+ msgstr ""
216
+
217
+ #: ../../source/contributing/development.rst:219
218
+ msgid "Our pipeline consists of a series of different tests that ensure that manim still works as intended and that the code you added sticks to our coding conventions."
219
+ msgstr ""
220
+
221
+ #: ../../source/contributing/development.rst:223
222
+ msgid "**Code style**: We use the code style imposed by `Black <https://black.readthedocs.io/en/stable/>`_, `isort <https://pycqa.github.io/isort/>`_ and `flake8 <https://flake8.pycqa.org/en/latest/>`_. The GitHub pipeline makes sure that the (Python) files changed in your pull request also adhere to this code style. If this step of the pipeline fails, fix your code formatting automatically by running ``black <file or directory>`` and ``isort <file or directory>``. To fix code style problems, run ``flake8 <file or directory>`` for a style report, and then fix the problems manually that were detected by ``flake8``."
223
+ msgstr ""
224
+
225
+ #: ../../source/contributing/development.rst:232
226
+ msgid "**Tests**: The pipeline runs manim's test suite on different operating systems (the latest versions of Ubuntu, MacOS, and Windows) for different versions of Python. The test suite consists of two different kinds of tests: integration tests and doctests. You can run them locally by executing ``poetry run pytest`` and ``poetry run pytest --doctest-modules manim``, respectively, from the root directory of your cloned fork."
227
+ msgstr ""
228
+
229
+ #: ../../source/contributing/development.rst:239
230
+ msgid "**Documentation**: We also build a version of the documentation corresponding to your pull request. Make sure not to introduce any Sphinx errors, and have a look at the built HTML files to see whether the formatting of the documentation you added looks as you intended. You can build the documentation locally by running ``make html`` from the ``docs`` directory. Since the inheritance diagrams require you to have `Graphviz <https://graphviz.org/>`_ installed locally."
231
+ msgstr ""
232
+
233
+ #: ../../source/contributing/development.rst:246
234
+ msgid "Finally, if the pipeline passes and you are satisfied with your changes: wait for feedback and iterate over any requested changes. You will likely be asked to edit or modify your PR in one way or another during this process. This is not an indictment of your work, but rather a strong signal that the community wants to merge your changes! Once approved, your changes may be merged!"
235
+ msgstr ""
236
+
237
+ #: ../../source/contributing/development.rst:253
238
+ msgid "Further useful guidelines"
239
+ msgstr ""
240
+
241
+ #: ../../source/contributing/development.rst:255
242
+ msgid "When submitting a PR, please mention explicitly if it includes breaking changes."
243
+ msgstr ""
244
+
245
+ #: ../../source/contributing/development.rst:257
246
+ msgid "When submitting a PR, make sure that your proposed changes are as general as possible, and ready to be taken advantage of by all of manim's users. In particular, leave out any machine-specific configurations, or any personal information it may contain."
247
+ msgstr ""
248
+
249
+ #: ../../source/contributing/development.rst:262
250
+ msgid "If you are a maintainer, please label issues and PRs appropriately and frequently."
251
+ msgstr ""
252
+
253
+ #: ../../source/contributing/development.rst:265
254
+ msgid "When opening a new issue, if there are old issues that are related, add a link to them in your new issue (even if the old ones are closed)."
255
+ msgstr ""
256
+
257
+ #: ../../source/contributing/development.rst:268
258
+ msgid "When submitting a code review, it is highly recommended that you adhere to `these general guidelines <https://conventionalcomments.org/>`_."
259
+ msgstr ""
260
+
261
+ #: ../../source/contributing/development.rst:271
262
+ msgid "If you find stale or inactive issues that seem to be irrelevant, please post a comment saying 'This issue should be closed', and a community developer will take a look."
263
+ msgstr ""
264
+
265
+ #: ../../source/contributing/development.rst:275
266
+ msgid "Please do as much as possible to keep issues, PRs, and development in general as tidy as possible."
267
+ msgstr ""
268
+
269
+ #: ../../source/contributing/development.rst:279
270
+ msgid "You can find examples for the ``docs`` in several places: the :doc:`Example Gallery <../examples>`, :doc:`Tutorials <../tutorials/index>`, and :doc:`Reference Classes <../reference>`."
271
+ msgstr ""
272
+
273
+ #: ../../source/contributing/development.rst:283
274
+ msgid "In case you are contributing, please have a look at this flowchart:"
275
+ msgstr ""
276
+
277
+
data/docs/i18n/gettext/contributing/docstrings.pot ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/contributing/docstrings.rst:3
10
+ msgid "Adding Docstrings"
11
+ msgstr ""
12
+
13
+ #: ../../source/contributing/docstrings.rst:5
14
+ msgid "A docstring is a string literal that is used right after the definition of a module, function, class, or method. They are used to document our code. This page will give you a set of guidelines to write efficient and correct docstrings."
15
+ msgstr ""
16
+
17
+ #: ../../source/contributing/docstrings.rst:11
18
+ msgid "Formatting the Docstrings"
19
+ msgstr ""
20
+
21
+ #: ../../source/contributing/docstrings.rst:13
22
+ msgid "Please begin the description of the class/function in the same line as the 3 quotes:"
23
+ msgstr ""
24
+
25
+ #: ../../source/contributing/docstrings.rst:31
26
+ msgid "NumPy Format"
27
+ msgstr ""
28
+
29
+ #: ../../source/contributing/docstrings.rst:32
30
+ msgid "The Manim Community uses numpy format for the documentation."
31
+ msgstr ""
32
+
33
+ #: ../../source/contributing/docstrings.rst:34
34
+ msgid "Use the numpy format for sections and formatting - see https://numpydoc.readthedocs.io/en/latest/format.html."
35
+ msgstr ""
36
+
37
+ #: ../../source/contributing/docstrings.rst:37
38
+ msgid "This includes:"
39
+ msgstr ""
40
+
41
+ #: ../../source/contributing/docstrings.rst:39
42
+ msgid "The usage of ``Attributes`` to specify ALL ATTRIBUTES that a class can have and a brief (or long, if needed) description."
43
+ msgstr ""
44
+
45
+ #: ../../source/contributing/docstrings.rst:43
46
+ msgid "Also, ``__init__`` parameters should be specified as ``Parameters`` **on the class docstring**, *rather than under* ``__init__``. Note that this can be omitted if the parameters and the attributes are the same (i.e., dataclass) - priority should be given to the ``Attributes`` section, in this case, which must **always be present**, unless the class specifies no attributes at all. (See more on Parameters in number 2 of this list.)"
47
+ msgstr ""
48
+
49
+ #: ../../source/contributing/docstrings.rst:51
50
+ #: ../../source/contributing/docstrings.rst:151
51
+ msgid "Example:"
52
+ msgstr ""
53
+
54
+ #: ../../source/contributing/docstrings.rst:83
55
+ msgid "The usage of ``Parameters`` on functions to specify how every parameter works and what it does. This should be excluded if the function has no parameters. Note that you **should not** specify the default value of the parameter on the type. On the documentation render, this is already specified on the function's signature. If you need to indicate a further consequence of value omission or simply want to specify it on the docs, make sure to **specify it in the parameter's DESCRIPTION**."
56
+ msgstr ""
57
+
58
+ #: ../../source/contributing/docstrings.rst:92
59
+ #: ../../source/contributing/docstrings.rst:128
60
+ msgid "See an example on list item 4."
61
+ msgstr ""
62
+
63
+ #: ../../source/contributing/docstrings.rst:96
64
+ msgid "When documenting varargs (args and kwargs), make sure to document them by listing the possible types of each value specified, like this:"
65
+ msgstr ""
66
+
67
+ #: ../../source/contributing/docstrings.rst:109
68
+ msgid "Note that, if the kwargs expect specific values, those can be specified in a section such as ``Other Parameters``:"
69
+ msgstr ""
70
+
71
+ #: ../../source/contributing/docstrings.rst:120
72
+ msgid "The usage of ``Returns`` to indicate what is the type of this function's return value and what exactly it returns (i.e., a brief - or long, if needed - description of what this function returns). Can be omitted if the function does not explicitly return (i.e., always returns ``None`` because ``return`` is never specified, and it is very clear why this function does not return at all). In all other cases, it should be specified."
73
+ msgstr ""
74
+
75
+ #: ../../source/contributing/docstrings.rst:130
76
+ msgid "The usage of ``Examples`` in order to specify an example of usage of a function **is highly encouraged** and, in general, should be specified for *every function* unless its usage is **extremely obvious**, which can be debatable. Even if it is, it's always a good idea to add an example in order to give a better orientation to the documentation user. Use the following format for Python code:"
77
+ msgstr ""
78
+
79
+ #: ../../source/contributing/docstrings.rst:144
80
+ msgid "Also, if this is a video- or animation-related change, please try to add an example GIF or video if possible for demonstration purposes."
81
+ msgstr ""
82
+
83
+
data/docs/i18n/gettext/contributing/examples.pot ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/contributing/examples.rst:3
10
+ msgid "Adding Examples"
11
+ msgstr ""
12
+
13
+ #: ../../source/contributing/examples.rst:5
14
+ msgid "This is a page for adding examples to the documentation. Here are some guidelines you should follow before you publish your examples."
15
+ msgstr ""
16
+
17
+ #: ../../source/contributing/examples.rst:9
18
+ msgid "Guidelines for examples"
19
+ msgstr ""
20
+
21
+ #: ../../source/contributing/examples.rst:11
22
+ msgid "Everybody is welcome to contribute examples to the documentation. Since straightforward examples are a great resource for quickly learning manim, here are some guidelines."
23
+ msgstr ""
24
+
25
+ #: ../../source/contributing/examples.rst:15
26
+ msgid "What makes a great example"
27
+ msgstr ""
28
+
29
+ #: ../../source/contributing/examples.rst:19
30
+ msgid "As soon as a new version of manim is released, the documentation will be a snapshot of that version. Examples contributed after the release will only be shown in the latest documentation."
31
+ msgstr ""
32
+
33
+ #: ../../source/contributing/examples.rst:22
34
+ msgid "Examples should be ready to copy and paste for use."
35
+ msgstr ""
36
+
37
+ #: ../../source/contributing/examples.rst:24
38
+ msgid "Examples should be brief yet still easy to understand."
39
+ msgstr ""
40
+
41
+ #: ../../source/contributing/examples.rst:26
42
+ msgid "Examples don't require the ``from manim import *`` statement, this will be added automatically when the docs are built."
43
+ msgstr ""
44
+
45
+ #: ../../source/contributing/examples.rst:28
46
+ msgid "There should be a balance of animated and non-animated examples."
47
+ msgstr ""
48
+
49
+ #: ../../source/contributing/examples.rst:30
50
+ msgid "As manim makes animations, we can include lots of animated examples; however, our RTD has a maximum 20 minutes to build. Animated examples should only be used when necessary, as last frame examples render faster."
51
+ msgstr ""
52
+
53
+ #: ../../source/contributing/examples.rst:32
54
+ msgid "Lots of examples (e.g. size of a plot-axis, setting opacities, making texts, etc.) will also work as images. It is a lot more convenient to see the end product immediately instead of waiting for an animation to reveal it."
55
+ msgstr ""
56
+
57
+ #: ../../source/contributing/examples.rst:34
58
+ msgid "Please ensure the examples run on the current main branch when you contribute an example."
59
+ msgstr ""
60
+
61
+ #: ../../source/contributing/examples.rst:36
62
+ msgid "If the functions used are confusing for people, make sure to add comments in the example to explain what they do."
63
+ msgstr ""
64
+
65
+ #: ../../source/contributing/examples.rst:39
66
+ msgid "How examples are structured"
67
+ msgstr ""
68
+
69
+ #: ../../source/contributing/examples.rst:41
70
+ msgid "Examples can be organized into chapters and subchapters."
71
+ msgstr ""
72
+
73
+ #: ../../source/contributing/examples.rst:43
74
+ msgid "When you create examples, the beginning example chapter should focus on only one functionality. When the functionality is simple, multiple ideas can be illustrated under a single example."
75
+ msgstr ""
76
+
77
+ #: ../../source/contributing/examples.rst:45
78
+ msgid "As soon as simple functionalities are explained, the chapter may include more complex examples which build on the simpler ideas."
79
+ msgstr ""
80
+
81
+ #: ../../source/contributing/examples.rst:48
82
+ msgid "Writing examples"
83
+ msgstr ""
84
+
85
+ #: ../../source/contributing/examples.rst:50
86
+ msgid "When you want to add/edit examples, they can be found in the ``docs/source/`` directory, or directly in the manim source code (e.g. ``manim/mobject/mobject.py``). The examples are written in ``rst`` format and use the manim directive (see :mod:`manim.utils.docbuild.manim_directive` ), ``.. manim::``. Every example is in its own block, and looks like this:"
87
+ msgstr ""
88
+
89
+ #: ../../source/contributing/examples.rst:67
90
+ msgid "In the building process of the docs, all ``rst`` files are scanned, and the manim directive (``.. manim::``) blocks are identified as scenes that will be run by the current version of manim. Here is the syntax:"
91
+ msgstr ""
92
+
93
+ #: ../../source/contributing/examples.rst:72
94
+ msgid "``.. manim:: [SCENE_NAME]`` has no indentation and ``SCENE_NAME`` refers to the name of the class below."
95
+ msgstr ""
96
+
97
+ #: ../../source/contributing/examples.rst:74
98
+ msgid "The flags are followed in the next line (no blank line here!), with the indentation level of one tab."
99
+ msgstr ""
100
+
101
+ #: ../../source/contributing/examples.rst:76
102
+ msgid "All possible flags can be found at :mod:`manim.utils.docbuild.manim_directive`."
103
+ msgstr ""
104
+
105
+ #: ../../source/contributing/examples.rst:78
106
+ msgid "In the example above, the ``Formula1`` following ``.. manim::`` is the scene that the directive expects to render; thus, in the python code, the class has the same name: ``class Formula1(Scene)``."
107
+ msgstr ""
108
+
109
+
data/docs/i18n/gettext/contributing/internationalization.pot ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/contributing/internationalization.rst:3
10
+ msgid "Internationalization"
11
+ msgstr ""
12
+
13
+ #: ../../source/contributing/internationalization.rst:5
14
+ msgid "Thank you for your interest in localizing Manim! Please read the instructions below to get started. You are also encouraged, though not required, to join our `Discord server <https://manim.community/discord>`__."
15
+ msgstr ""
16
+
17
+ #: ../../source/contributing/internationalization.rst:11
18
+ msgid "Signing up"
19
+ msgstr ""
20
+
21
+ #: ../../source/contributing/internationalization.rst:13
22
+ msgid "You will first need to create an account for our project. Go to our `project homepage <https://translate.manim.community/>`__ and click the sign up button at the top right hand corner. Follow the instructions to create an account. After creating an account, you should return back to our homepage. Click the Manim project to contribute translations for the main library."
23
+ msgstr ""
24
+
25
+ #: ../../source/contributing/internationalization.rst:21
26
+ msgid "Contributing"
27
+ msgstr ""
28
+
29
+ #: ../../source/contributing/internationalization.rst:24
30
+ msgid "Keep in mind that Manim is still a work in progress. Tutorials and documentation are always subject to change. When a developer implements a new feature, they are not forced to respect any translations. This means that parts of the translation might become outdated over time."
31
+ msgstr ""
32
+
33
+ #: ../../source/contributing/internationalization.rst:29
34
+ msgid "That being said, improving the documentation and making it more accessible is still highly encouraged. And even if your work gets outdated and requires change, you or someone else can simply adjust the translation. Your efforts are not in vail!"
35
+ msgstr ""
36
+
37
+ #: ../../source/contributing/internationalization.rst:35
38
+ msgid "Voting"
39
+ msgstr ""
40
+
41
+ #: ../../source/contributing/internationalization.rst:37
42
+ msgid "To ensure that our translations are of good quality, we use crowdsourcing and voting to approve good translations and reject bad ones. The current threshold for a translation being accepted is 3 votes; this may change as we gauge the level of activity in the community and the quality of translations."
43
+ msgstr ""
44
+
45
+ #: ../../source/contributing/internationalization.rst:43
46
+ msgid "To vote on translations, first click on a language you would like to help with, then click the \"translate all\" button. You should then enter the translation editor. Next to the search bar, you will see a funnel-like icon - click it and select the \"Need to Be Voted\" option to see translations that need to be voted on. You can then select a string on the left sidebar, view the translations at the bottom and vote with the + and - icons for good and poor translations respectively."
47
+ msgstr ""
48
+
49
+ #: ../../source/contributing/internationalization.rst:52
50
+ msgid "Translations"
51
+ msgstr ""
52
+
53
+ #: ../../source/contributing/internationalization.rst:54
54
+ msgid "You can also help with contributing translations directly. Follow the steps above to enter the translation editor (instead of clicking \"Translate all\", you may also choose to translate strings from a specific file by clicking them). Crowdin's on-screen tutorial should guide you through the process."
55
+ msgstr ""
56
+
57
+ #: ../../source/contributing/internationalization.rst:61
58
+ msgid "Translation guidelines"
59
+ msgstr ""
60
+
61
+ #: ../../source/contributing/internationalization.rst:63
62
+ msgid "In general, follow the conventions for technical writing in your target language. You may want to refer to similar, high quality sources (eg. Python's documentation in your language) for guidance. Note that code blocks, code literals, names and pseudonyms should be left unchanged."
63
+ msgstr ""
64
+
65
+ #: ../../source/contributing/internationalization.rst:69
66
+ msgid "Proofreading"
67
+ msgstr ""
68
+
69
+ #: ../../source/contributing/internationalization.rst:71
70
+ msgid "For certain languages with a significant number of speakers within the Manim Community, an additional step of proofreading is used after crowdsourcing to further ensure the quality of our translations. Proofreaders are trusted community members who will look over and give the final approval on translations. If you would like to be a proofreader, please email translations@manim.community with the answers to the following questions:"
71
+ msgstr ""
72
+
73
+ #: ../../source/contributing/internationalization.rst:79
74
+ msgid "What is your Crowdin username?"
75
+ msgstr ""
76
+
77
+ #: ../../source/contributing/internationalization.rst:80
78
+ msgid "What is your Discord username (optional)?"
79
+ msgstr ""
80
+
81
+ #: ../../source/contributing/internationalization.rst:81
82
+ msgid "What is your GitHub username (optional)?"
83
+ msgstr ""
84
+
85
+ #: ../../source/contributing/internationalization.rst:82
86
+ msgid "List the languages you speak, and your level of fluency with them."
87
+ msgstr ""
88
+
89
+ #: ../../source/contributing/internationalization.rst:83
90
+ msgid "What language(s) are you applying to be a proofreader for?"
91
+ msgstr ""
92
+
93
+ #: ../../source/contributing/internationalization.rst:84
94
+ msgid "Do you have any previous experience with translations?"
95
+ msgstr ""
96
+
97
+ #: ../../source/contributing/internationalization.rst:85
98
+ msgid "If yes, give us more details."
99
+ msgstr ""
100
+
101
+ #: ../../source/contributing/internationalization.rst:86
102
+ msgid "How will you ensure the quality of translations, should you become a proofreader?"
103
+ msgstr ""
104
+
105
+ #: ../../source/contributing/internationalization.rst:89
106
+ msgid "Please note that you don't need to have prior translation experience to be a proofreader, just a commitment to maintaining a good quality of translations."
107
+ msgstr ""
108
+
109
+ #: ../../source/contributing/internationalization.rst:94
110
+ msgid "Errors"
111
+ msgstr ""
112
+
113
+ #: ../../source/contributing/internationalization.rst:97
114
+ msgid "Source errors"
115
+ msgstr ""
116
+
117
+
data/docs/i18n/gettext/contributing/performance.pot ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: Manim \n"
5
+ "MIME-Version: 1.0\n"
6
+ "Content-Type: text/plain; charset=UTF-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+
9
+ #: ../../source/contributing/performance.rst:3
10
+ msgid "Improving performance"
11
+ msgstr ""
12
+
13
+ #: ../../source/contributing/performance.rst:5
14
+ msgid "One of Manim's main flaws as an animation library is its slow performance. As of time of writing (January 2022), the library is still very unoptimized. As such, we highly encourage contributors to help out in optimizing the code."
15
+ msgstr ""
16
+
17
+ #: ../../source/contributing/performance.rst:10
18
+ msgid "Profiling"
19
+ msgstr ""
20
+
21
+ #: ../../source/contributing/performance.rst:12
22
+ msgid "Before the library can be optimized, we first need to identify the bottlenecks in performance via profiling. There are numerous Python profilers available for this purpose; some examples include cProfile and Scalene."
23
+ msgstr ""
24
+
25
+ #: ../../source/contributing/performance.rst:17
26
+ msgid "Running an animation as a script"
27
+ msgstr ""
28
+
29
+ #: ../../source/contributing/performance.rst:19
30
+ msgid "Most instructions for profilers assume you can run the python file directly as a script from the command line. While Manim animations are usually run from the command-line, we can run them as scripts by adding something like the following to the bottom of the file:"
31
+ msgstr ""
32
+
33
+ #: ../../source/contributing/performance.rst:30
34
+ msgid "Where ``SceneName`` is the name of the scene you want to run. You can then run the file directly, and can thus follow the instructions for most profilers."
35
+ msgstr ""
36
+
37
+ #: ../../source/contributing/performance.rst:34
38
+ msgid "An example: profiling with cProfile and SnakeViz"
39
+ msgstr ""
40
+
41
+ #: ../../source/contributing/performance.rst:36
42
+ msgid "Install SnakeViz:"
43
+ msgstr ""
44
+
45
+ #: ../../source/contributing/performance.rst:42
46
+ msgid "cProfile is included with in Python's standard library and does not need to be installed."
47
+ msgstr ""
48
+
49
+ #: ../../source/contributing/performance.rst:44
50
+ msgid "Suppose we want to profile ``SquareToCircle``. Then we add and save the following code to ``square_to_circle.py``:"
51
+ msgstr ""
52
+
53
+ #: ../../source/contributing/performance.rst:64
54
+ msgid "Now run the following in the terminal:"
55
+ msgstr ""
56
+
57
+ #: ../../source/contributing/performance.rst:70
58
+ msgid "This will create a file called ``square_to_circle.txt``."
59
+ msgstr ""
60
+
61
+ #: ../../source/contributing/performance.rst:72
62
+ msgid "Now, we can run SnakeViz on the profile file:"
63
+ msgstr ""
64
+
65
+