ManimCommunity/manim

Zoom Deactivation

Open

#3.009 geöffnet am 4. Nov. 2022

Auf GitHub ansehen
 (3 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Python (1.378 Forks)batch import
good first issuenew feature

Repository-Metriken

Stars
 (17.820 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 11T 17h) (4 gemergte PRs in 30 T)

Beschreibung

Description of the proposed feature

The feature I want to propose is a zoom deactivation system It would look like this.

from manim import *
class Basic(ZoomedScene):
    def construct(self):
             self.activate_zooming(animate=False)

             self.deactivate_zooming(animate=False)

I would like to do this because we can activated zooming but not deactivate it.

How can the new feature be used?

In cases where you would like to zoom in for a little bit but then remove the zoom.

Contributor Guide