Skip to content

[EXPERIMENTAL] Remove ThreeDScene and rewrite Camera internals #4059

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ msgid "Bases: :py:class:`manim.mobject.three_d.three_dimensions.Cylinder`"
msgstr ""

#: ../../../manim/mobject/three_d/three_dimensions.py:docstring of manim.mobject.three_d.three_dimensions.Line3D:1
msgid "A cylindrical line, for use in ThreeDScene."
msgid "A cylindrical line."
msgstr ""

#: ../../../manim/mobject/three_d/three_dimensions.py:docstring of manim.mobject.three_d.three_dimensions.Line3D:4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ msgid "A spherical dot."
msgstr ""

#: ../../source/reference/manim.mobject.three_d.three_dimensions.rst:40:<autosummary>:1
msgid "A cylindrical line, for use in ThreeDScene."
msgid "A cylindrical line."
msgstr ""

#: ../../source/reference/manim.mobject.three_d.three_dimensions.rst:40:<autosummary>:1
Expand Down

This file was deleted.

210 changes: 0 additions & 210 deletions docs/i18n/gettext/reference/manim.scene.three_d_scene.ThreeDScene.pot

This file was deleted.

4 changes: 2 additions & 2 deletions docs/source/contributing/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,11 @@ The decorator can be used with or without parentheses. **By default, the test on
circle = Circle()
scene.play(Animation(circle))

You can also specify, when needed, which base scene you need (ThreeDScene, for example) :
You can also specify, when needed, which base scene you need (VectorScene, for example) :

.. code:: python

@frames_comparison(last_frame=False, base_scene=ThreeDScene)
@frames_comparison(last_frame=False, base_scene=VectorScene)
def test_circle(scene):
circle = Circle()
scene.play(Animation(circle))
Expand Down
Loading
Loading