ManimCommunity/manim

Zoom Deactivation

Open

#3,009 opened on Nov 4, 2022

View on GitHub
 (3 comments) (0 reactions) (0 assignees)Python (1,378 forks)batch import
good first issuenew feature

Repository metrics

Stars
 (17,820 stars)
PR merge metrics
 (Avg merge 90d 10h) (31 merged PRs in 30d)

Description

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